From 434e516357c7eee4b20df455c2d5fbd5dae5f4c9 Mon Sep 17 00:00:00 2001 From: Simon Date: Thu, 22 Sep 2016 20:21:26 +0100 Subject: [PATCH] Fix reading of IDs --- DMRControl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DMRControl.cpp b/DMRControl.cpp index 57ead2f..5349c8a 100644 --- a/DMRControl.cpp +++ b/DMRControl.cpp @@ -37,7 +37,7 @@ m_lookup(NULL) assert(display != NULL); m_lookup = new CDMRLookup(lookupFile); - //m_lookup->read(); + m_lookup->read(); CDMRSlot::init(id, colorCode, callHang, selfOnly, prefixes, blackList, DstIdBlacklistSlot1RF, DstIdWhitelistSlot1RF, DstIdBlacklistSlot2RF, DstIdWhitelistSlot2RF, DstIdBlacklistSlot1NET, DstIdWhitelistSlot1NET, DstIdBlacklistSlot2NET, DstIdWhitelistSlot2NET, modem, network, display, duplex, m_lookup, rssiMultiplier, rssiOffset, jitter, TGRewriteSlot1, TGRewriteSlot2, BMAutoRewrite, BMRewriteReflectorVoicePrompts); }