Correct comment

This commit is contained in:
Geoffrey Merck 2020-08-05 21:15:03 +02:00
parent 252d54a484
commit b2111553c6
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ void CFMNoiseSquelch::setParams(uint8_t highThreshold, uint8_t lowThreshold)
bool CFMNoiseSquelch::process(q15_t sample)
{
//get more dynamic into the decoder by multiplying the sample by 1.5
//get more dynamic into the decoder by multiplying the sample by 64
q31_t sample31 = q31_t(sample) << 6; //+ (q31_t(sample) >> 1);
q31_t q2 = m_q1;