Modify the P25 UID check slightly.

This commit is contained in:
Jonathan Naylor
2017-03-29 20:46:27 +01:00
parent 37bde2df6c
commit c0571edb0b
8 changed files with 16 additions and 15 deletions

View File

@@ -36,7 +36,7 @@
class CP25Control {
public:
CP25Control(unsigned int nac, bool uidoverride, CP25Network* network, CDisplay* display, unsigned int timeout, bool duplex, CDMRLookup* lookup, CRSSIInterpolator* rssiMapper);
CP25Control(unsigned int nac, bool uidOverride, CP25Network* network, CDisplay* display, unsigned int timeout, bool duplex, CDMRLookup* lookup, CRSSIInterpolator* rssiMapper);
~CP25Control();
bool writeModem(unsigned char* data, unsigned int len);
@@ -47,7 +47,7 @@ public:
private:
unsigned int m_nac;
bool m_uidoverride;
bool m_uidOverride;
CP25Network* m_network;
CDisplay* m_display;
bool m_duplex;