From c0c12bdb676d82c5e9f6408d1e2c81c4e5536ee8 Mon Sep 17 00:00:00 2001 From: Jonathan Naylor Date: Thu, 24 Mar 2016 12:57:11 +0000 Subject: [PATCH] Remove excessive logging which slows the modem down. --- DMRSlotRX.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/DMRSlotRX.cpp b/DMRSlotRX.cpp index 68b42e9..3e461e3 100644 --- a/DMRSlotRX.cpp +++ b/DMRSlotRX.cpp @@ -320,9 +320,6 @@ void CDMRSlotRX::correlateEMB() } if (corr > m_maxCorr) { -#if defined(WANT_DEBUG) - DEBUG3("DMRSlotRX: emb found slot/rel pos", m_slot ? 2U : 1U, int16_t(m_dataPtr) - int16_t(m_syncPtr)); -#endif m_maxCorr = corr; m_syncPtr = m_dataPtr; m_endPtr = m_dataPtr + DMR_SLOT_TYPE_LENGTH_SAMPLES / 2U + DMR_INFO_LENGTH_SAMPLES / 2U - 1U;