Add extra logging to XLX data.

This commit is contained in:
Jonathan Naylor 2017-05-12 17:19:39 +01:00
parent 1ed7c976ec
commit db069edd1b
2 changed files with 6 additions and 1 deletions

View file

@ -420,6 +420,11 @@ int CDMRGateway::run()
m_repeater->write(data);
status[m_xlxSlot] = DMRGWS_REFLECTOR;
timer[m_xlxSlot]->start();
} else {
unsigned int slotNo = data.getSlotNo();
unsigned int dstId = data.getDstId();
FLCO flco = data.getFLCO();
LogWarning("XLX, Unexpected data from slot %u %s%u", slotNo, flco == FLCO_GROUP ? "TG" : "", dstId);
}
}
}

View file

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