1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-10-01 01:06:35 -04:00

NFM Demod: revised squelch to take channel power short (16 samples) average

This commit is contained in:
f4exb 2016-12-12 23:15:41 +01:00
parent 25e2a9877b
commit e9faec07c5
2 changed files with 4 additions and 4 deletions

View File

@ -68,7 +68,7 @@ NFMDemod::NFMDemod() :
m_agcLevel = 1.0; m_agcLevel = 1.0;
m_AGC.resize(m_squelchGate, m_agcLevel); m_AGC.resize(m_squelchGate, m_agcLevel);
// m_movingAverage.resize(16, 0); m_movingAverage.resize(16, 0);
m_ctcssDetector.setCoefficients(3000, 6000.0); // 0.5s / 2 Hz resolution m_ctcssDetector.setCoefficients(3000, 6000.0); // 0.5s / 2 Hz resolution
m_afSquelch.setCoefficients(24, 600, 48000.0, 200, 0); // 4000 Hz span, 250us, 100ms attack m_afSquelch.setCoefficients(24, 600, 48000.0, 200, 0); // 4000 Hz span, 250us, 100ms attack
@ -154,7 +154,7 @@ void NFMDemod::feed(const SampleVector::const_iterator& begin, const SampleVecto
double magsqRaw = m_AGC.getMagSq(); double magsqRaw = m_AGC.getMagSq();
Real magsq = magsqRaw / (1<<30); Real magsq = magsqRaw / (1<<30);
// m_movingAverage.feed(magsq); m_movingAverage.feed(magsq);
m_magsqSum += magsq; m_magsqSum += magsq;
if (magsq > m_magsqPeak) if (magsq > m_magsqPeak)
@ -172,7 +172,7 @@ void NFMDemod::feed(const SampleVector::const_iterator& begin, const SampleVecto
// AF processing // AF processing
if (magsq > m_squelchLevel) if (m_movingAverage.average() > m_squelchLevel)
{ {
if (m_squelchCount < m_squelchGate) if (m_squelchCount < m_squelchGate)
{ {

View File

@ -207,7 +207,7 @@ private:
//Complex m_m1Sample; //Complex m_m1Sample;
//Complex m_m2Sample; //Complex m_m2Sample;
MagAGC m_AGC; MagAGC m_AGC;
// MovingAverage<Real> m_movingAverage; MovingAverage<Real> m_movingAverage;
AFSquelch m_afSquelch; AFSquelch m_afSquelch;
Real m_agcLevel; // AGC will aim to this level Real m_agcLevel; // AGC will aim to this level
Real m_agcFloor; // AGC will not go below this level Real m_agcFloor; // AGC will not go below this level