Reduce the scanning range of the snc detector.

This commit is contained in:
Jonathan Naylor 2016-04-01 09:12:42 +01:00
parent 67129feee9
commit 6ea456254e
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ bool CDMRSlotRX::processSample(q15_t sample)
m_bitBuffer[m_bitPtr] |= 0x01U;
if (m_state == DMRRXS_NONE) {
if (m_dataPtr >= 840U && m_dataPtr <= 1000U)
if (m_dataPtr >= 840U && m_dataPtr <= 910U)
correlateSync();
} else {
uint16_t min = m_syncPtr - 2U;