From 5fbd7b479050d6470c1fda3119b9546b9be1a5cf Mon Sep 17 00:00:00 2001 From: Jonathan Naylor Date: Sun, 28 Aug 2016 11:24:36 +0100 Subject: [PATCH] Allow for more errors on the D-Star frame sync. --- DStarRX.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DStarRX.cpp b/DStarRX.cpp index 45b4258..02bf0e7 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 = 2U; +const uint8_t FRAME_SYNC_ERRS = 3U; // D-Star bit order version of 0x55 0x2D 0x16 const uint32_t DATA_SYNC_DATA = 0x00AAB468U;