1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2025-06-26 14:05:33 -04:00

AM demod: make squelch tail twice faster as attack

This commit is contained in:
f4exb 2015-12-26 21:30:30 +01:00
parent 61d6d90ce3
commit 73bd332619

View File

@ -95,9 +95,9 @@ void AMDemod::feed(const SampleVector::const_iterator& begin, const SampleVector
} }
else else
{ {
if (m_squelchCount > 0) if (m_squelchCount > 1)
{ {
m_squelchCount--; m_squelchCount -= 2;
} }
} }