mirror of
https://github.com/f4exb/sdrangel.git
synced 2025-02-03 09:44:01 -05:00
DSD + NFM demods: re-itinitalize squelch open count when squelch gate changes
This commit is contained in:
parent
1621b40aff
commit
a59404345e
@ -274,6 +274,7 @@ void DSDDemod::apply()
|
||||
if (m_config.m_squelchGate != m_running.m_squelchGate)
|
||||
{
|
||||
m_squelchGate = 480 * m_config.m_squelchGate; // gate is given in 10s of ms at 48000 Hz audio sample rate
|
||||
m_squelchCount = 0; // reset squelch open counter
|
||||
}
|
||||
|
||||
if (m_config.m_squelch != m_running.m_squelch)
|
||||
|
@ -362,6 +362,7 @@ void NFMDemod::apply()
|
||||
{
|
||||
m_agcAttack = 480 * m_config.m_squelchGate; // gate is given in 10s of ms at 48000 Hz audio sample rate
|
||||
m_AGC.resize(m_agcAttack, m_agcLevel);
|
||||
m_squelchCount = 0; // reset squelch open counter
|
||||
}
|
||||
|
||||
if (m_config.m_squelch != m_running.m_squelch)
|
||||
|
Loading…
Reference in New Issue
Block a user