Hopefully fix DMR RX: m_dataPtr >= 160U

48kHz
Mathis Schmieder 2016-01-15 10:02:34 +00:00
parent 688488620a
commit 6efca5b3d0
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ bool CDMRSlotRX::processSample(q15_t sample)
// The approximate position of the sync samples, XXX to be updated later
// XXX change range when m_endPtr is set, make it tighter.
if (m_dataPtr >= 375U && m_dataPtr <= 530U)
if (m_dataPtr >= 160U && m_dataPtr <= 530U)
correlateSync(sample);
if (m_dataPtr == m_endPtr) {