From 958c33c65a80c8104c483482eaff0e48ff843bd3 Mon Sep 17 00:00:00 2001 From: Bryan Biedenkapp Date: Wed, 31 Jul 2024 16:09:18 -0400 Subject: [PATCH] ignore logging excessive sync frame errors; --- src/host/p25/Control.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/host/p25/Control.cpp b/src/host/p25/Control.cpp index 0623f27e..f02431ca 100644 --- a/src/host/p25/Control.cpp +++ b/src/host/p25/Control.cpp @@ -557,9 +557,10 @@ bool Control::processFrame(uint8_t* data, uint32_t len) errs += Utils::countBits8(syncBytes[i] ^ P25_SYNC_BYTES[i]); if (errs >= MAX_SYNC_BYTES_ERRS) { +/* LogWarning(LOG_RF, "P25, possible sync word rejected, errs = %u, sync word = %02X %02X %02X %02X %02X %02X", errs, syncBytes[0U], syncBytes[1U], syncBytes[2U], syncBytes[3U], syncBytes[4U], syncBytes[5U]); - +*/ return false; } else {