From 551aa3bb204822bb00971ac2e4dc7ffebbadf158 Mon Sep 17 00:00:00 2001 From: F4FXL Date: Sat, 16 Dec 2017 09:02:15 +0100 Subject: [PATCH] Fixes erroneous end of frame seen on station having QSB --- DStarRX.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DStarRX.cpp b/DStarRX.cpp index 4def275..30cdab1 100644 --- a/DStarRX.cpp +++ b/DStarRX.cpp @@ -37,7 +37,7 @@ const uint8_t DATA_SYNC_ERRS = 2U; // D-Star bit order version of 0x55 0x55 0xC8 0x7A const uint32_t END_SYNC_DATA = 0xAAAA135EU; const uint32_t END_SYNC_MASK = 0xFFFFFFFFU; -const uint8_t END_SYNC_ERRS = 3U; +const uint8_t END_SYNC_ERRS = 1U; const uint8_t BIT_MASK_TABLE0[] = {0x7FU, 0xBFU, 0xDFU, 0xEFU, 0xF7U, 0xFBU, 0xFDU, 0xFEU}; const uint8_t BIT_MASK_TABLE1[] = {0x80U, 0x40U, 0x20U, 0x10U, 0x08U, 0x04U, 0x02U, 0x01U};