mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-16 05:11:49 -05:00
SSB mod: use CW keyer's pulse smoother
This commit is contained in:
parent
85c8129d9c
commit
7570a2f9d8
@ -95,7 +95,6 @@ SSBMod::SSBMod(BasebandSampleSink* sampleSink) :
|
||||
m_cwKeyer.setWPM(13);
|
||||
m_cwKeyer.setMode(CWKeyer::CWNone);
|
||||
|
||||
m_cwSmoother.setNbFadeSamples(192); // 4 ms at 48 kHz
|
||||
m_inAGC.setGate(m_config.m_agcThresholdGate);
|
||||
m_inAGC.setStepDownDelay(m_config.m_agcThresholdDelay);
|
||||
m_inAGC.setClamping(true);
|
||||
@ -355,7 +354,7 @@ void SSBMod::pullAF(Complex& sample)
|
||||
|
||||
if (m_cwKeyer.getSample())
|
||||
{
|
||||
m_cwSmoother.getFadeSample(true, fadeFactor);
|
||||
m_cwKeyer.getCWSmoother().getFadeSample(true, fadeFactor);
|
||||
|
||||
if (m_running.m_dsb)
|
||||
{
|
||||
@ -374,7 +373,7 @@ void SSBMod::pullAF(Complex& sample)
|
||||
}
|
||||
else
|
||||
{
|
||||
if (m_cwSmoother.getFadeSample(false, fadeFactor))
|
||||
if (m_cwKeyer.getCWSmoother().getFadeSample(false, fadeFactor))
|
||||
{
|
||||
if (m_running.m_dsb)
|
||||
{
|
||||
@ -627,13 +626,6 @@ bool SSBMod::handleMessage(const Message& cmd)
|
||||
m_config.m_agcThresholdGate = cfg.getAGCThresholdGate(); // ms
|
||||
m_config.m_agcThresholdDelay = cfg.getAGCThresholdDelay(); // ms
|
||||
|
||||
// m_config.m_agcTime = 48 * cfg.getAGCTime(); // ms
|
||||
// m_config.m_agcOrder = cfg.getAGCOrder();
|
||||
// m_config.m_agcThresholdEnable = cfg.getAGCThreshold() != -99;
|
||||
// m_config.m_agcThreshold = CalcDb::powerFromdB(cfg.getAGCThreshold()); // power dB
|
||||
// m_config.m_agcThresholdGate = 48 * cfg.getAGCThresholdGate(); // ms
|
||||
// m_config.m_agcThresholdDelay = 48 * cfg.getAGCThresholdDelay(); // ms
|
||||
|
||||
apply();
|
||||
|
||||
m_settingsMutex.unlock();
|
||||
@ -747,7 +739,6 @@ void SSBMod::apply()
|
||||
{
|
||||
m_settingsMutex.lock();
|
||||
m_cwKeyer.setSampleRate(m_config.m_audioSampleRate);
|
||||
m_cwSmoother.setNbFadeSamples(m_config.m_audioSampleRate / 250); // 4 ms
|
||||
m_settingsMutex.unlock();
|
||||
}
|
||||
|
||||
|
@ -435,7 +435,6 @@ private:
|
||||
Real m_peakLevel;
|
||||
Real m_levelSum;
|
||||
CWKeyer m_cwKeyer;
|
||||
CWSmoother m_cwSmoother;
|
||||
|
||||
MagAGC m_inAGC;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user