Double the signal level to the CTCSS decoder.

This commit is contained in:
Jonathan Naylor 2020-04-27 13:07:03 +01:00
parent e8ed77241c
commit d08a3690b0
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ m_rxLevelInverse(1)
uint8_t CFMCTCSSRX::setParams(uint8_t frequency, uint8_t threshold, uint8_t level) uint8_t CFMCTCSSRX::setParams(uint8_t frequency, uint8_t threshold, uint8_t level)
{ {
m_rxLevelInverse = 255 / q15_t(level); m_rxLevelInverse = 511 / q15_t(level);
m_coeffDivTwo = 0; m_coeffDivTwo = 0;