From cc1b39d21b89fdcbb463f8a285bb7ab41119a428 Mon Sep 17 00:00:00 2001 From: Jonathan Naylor Date: Tue, 30 Aug 2016 17:19:29 +0100 Subject: [PATCH] Restore old frame sync error threshold. --- DStarRX.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DStarRX.cpp b/DStarRX.cpp index 02bf0e7..45b4258 100644 --- a/DStarRX.cpp +++ b/DStarRX.cpp @@ -40,7 +40,7 @@ const q15_t THRESHOLD = 0; // D-Star bit order version of 0x55 0x55 0x6E 0x0A const uint32_t FRAME_SYNC_DATA = 0x00557650U; const uint32_t FRAME_SYNC_MASK = 0x00FFFFFFU; -const uint8_t FRAME_SYNC_ERRS = 3U; +const uint8_t FRAME_SYNC_ERRS = 2U; // D-Star bit order version of 0x55 0x2D 0x16 const uint32_t DATA_SYNC_DATA = 0x00AAB468U;