Pass Wires-X DG-Id through unchanged.

This commit is contained in:
Jonathan Naylor 2020-11-08 12:41:28 +00:00
parent ebe32306c0
commit f488dc88e1
2 changed files with 6 additions and 3 deletions

View file

@ -491,8 +491,11 @@ int CDGIdGateway::run()
CYSFFICH fich;
bool valid = fich.decode(buffer + 35U);
if (valid) {
fich.setDGId(i);
fich.encode(buffer + 35U);
unsigned char dgId = fich.getDGId();
if (dgId != WIRESX_DGID) {
fich.setDGId(i);
fich.encode(buffer + 35U);
}
rptNetwork.write(0U, buffer);

View file

@ -19,6 +19,6 @@
#if !defined(VERSION_H)
#define VERSION_H
const char* VERSION = "20201107";
const char* VERSION = "20201108";
#endif