From aa3f12ec46aebe8744c16d5dffa83bf892aff854 Mon Sep 17 00:00:00 2001 From: f4exb Date: Tue, 17 Apr 2018 09:15:02 +0200 Subject: [PATCH] NFM demod: assymetrical fade in and fade out for the squelch --- plugins/channelrx/demodnfm/nfmdemod.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/channelrx/demodnfm/nfmdemod.cpp b/plugins/channelrx/demodnfm/nfmdemod.cpp index 3c2d82ab3..38e0eec9d 100644 --- a/plugins/channelrx/demodnfm/nfmdemod.cpp +++ b/plugins/channelrx/demodnfm/nfmdemod.cpp @@ -193,7 +193,7 @@ void NFMDemod::feed(const SampleVector::const_iterator& begin, const SampleVecto { if (m_squelchCount > 0) { - m_squelchCount--; + m_squelchCount -= 10; } } } @@ -203,7 +203,7 @@ void NFMDemod::feed(const SampleVector::const_iterator& begin, const SampleVecto { if (m_squelchCount > 0) { - m_squelchCount--; + m_squelchCount -= 10; } } else