2014-05-18 11:52:39 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2012 maintech GmbH, Otto-Hahn-Str. 15, 97204 Hoechberg, Germany //
|
|
|
|
// written by Christian Daniel //
|
|
|
|
// //
|
|
|
|
// This program is free software; you can redistribute it and/or modify //
|
|
|
|
// it under the terms of the GNU General Public License as published by //
|
|
|
|
// the Free Software Foundation as version 3 of the License, or //
|
|
|
|
// //
|
|
|
|
// This program is distributed in the hope that it will be useful, //
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of //
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
|
|
|
|
// GNU General Public License V3 for more details. //
|
|
|
|
// //
|
|
|
|
// You should have received a copy of the GNU General Public License //
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include <QTime>
|
2015-08-17 02:29:34 -04:00
|
|
|
#include <QDebug>
|
2014-05-18 11:52:39 -04:00
|
|
|
#include <stdio.h>
|
2015-01-26 14:33:28 -05:00
|
|
|
#include <complex.h>
|
2014-05-18 11:52:39 -04:00
|
|
|
#include "nfmdemod.h"
|
2015-06-16 19:42:58 -04:00
|
|
|
#include "nfmdemodgui.h"
|
2014-05-18 11:52:39 -04:00
|
|
|
#include "audio/audiooutput.h"
|
2015-08-19 16:12:52 -04:00
|
|
|
#include "dsp/channelizer.h"
|
2015-01-26 14:33:28 -05:00
|
|
|
#include "dsp/pidcontroller.h"
|
2015-08-17 02:29:34 -04:00
|
|
|
#include "dsp/dspengine.h"
|
2014-05-18 11:52:39 -04:00
|
|
|
|
2015-08-29 03:41:39 -04:00
|
|
|
static const Real afSqTones[2] = {1200.0, 6000.0}; // {1200.0, 8000.0};
|
2015-06-19 02:27:29 -04:00
|
|
|
|
2014-05-18 11:52:39 -04:00
|
|
|
MESSAGE_CLASS_DEFINITION(NFMDemod::MsgConfigureNFMDemod, Message)
|
|
|
|
|
2015-08-23 20:06:11 -04:00
|
|
|
NFMDemod::NFMDemod() :
|
2015-06-16 19:42:58 -04:00
|
|
|
m_ctcssIndex(0),
|
2015-06-16 02:15:28 -04:00
|
|
|
m_sampleCount(0),
|
2015-06-19 02:27:29 -04:00
|
|
|
m_afSquelch(2, afSqTones),
|
|
|
|
m_squelchOpen(false),
|
2015-08-24 16:09:46 -04:00
|
|
|
m_audioFifo(4, 48000),
|
|
|
|
m_settingsMutex(QMutex::Recursive)
|
2014-05-18 11:52:39 -04:00
|
|
|
{
|
2015-08-12 03:03:02 -04:00
|
|
|
setObjectName("NFMDemod");
|
|
|
|
|
2015-01-26 14:33:28 -05:00
|
|
|
m_config.m_inputSampleRate = 96000;
|
|
|
|
m_config.m_inputFrequencyOffset = 0;
|
|
|
|
m_config.m_rfBandwidth = 12500;
|
|
|
|
m_config.m_afBandwidth = 3000;
|
2015-06-19 02:27:29 -04:00
|
|
|
m_config.m_squelch = -30.0;
|
2015-01-26 14:33:28 -05:00
|
|
|
m_config.m_volume = 2.0;
|
2015-08-31 02:47:46 -04:00
|
|
|
m_config.m_ctcssOn = false;
|
2015-08-23 20:06:11 -04:00
|
|
|
m_config.m_audioSampleRate = DSPEngine::instance()->getAudioSampleRate();
|
2014-05-18 11:52:39 -04:00
|
|
|
|
2015-01-26 14:33:28 -05:00
|
|
|
apply();
|
2014-05-18 11:52:39 -04:00
|
|
|
|
2015-08-23 20:06:11 -04:00
|
|
|
m_audioBuffer.resize(1<<14);
|
2014-05-18 11:52:39 -04:00
|
|
|
m_audioBufferFill = 0;
|
|
|
|
|
|
|
|
m_movingAverage.resize(16, 0);
|
2015-09-06 19:15:55 -04:00
|
|
|
m_agcLevel = 0.25; // 0.003
|
2015-06-20 03:28:57 -04:00
|
|
|
//m_AGC.resize(480, m_agcLevel, 0, 0.1*m_agcLevel);
|
2015-09-06 19:15:55 -04:00
|
|
|
m_AGC.resize(600, m_agcLevel*m_agcLevel); //, 0.3);
|
2015-06-16 02:15:28 -04:00
|
|
|
|
2015-06-16 19:42:58 -04:00
|
|
|
m_ctcssDetector.setCoefficients(3000, 6000.0); // 0.5s / 2 Hz resolution
|
2015-06-20 03:28:57 -04:00
|
|
|
m_afSquelch.setCoefficients(24, 48000.0, 5, 1); // 4000 Hz span, 250us
|
2015-06-19 02:27:29 -04:00
|
|
|
m_afSquelch.setThreshold(0.001);
|
2015-08-23 20:06:11 -04:00
|
|
|
|
|
|
|
DSPEngine::instance()->addAudioSink(&m_audioFifo);
|
2014-05-18 11:52:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
NFMDemod::~NFMDemod()
|
|
|
|
{
|
2015-08-23 20:06:11 -04:00
|
|
|
DSPEngine::instance()->removeAudioSink(&m_audioFifo);
|
2014-05-18 11:52:39 -04:00
|
|
|
}
|
|
|
|
|
2015-08-31 02:47:46 -04:00
|
|
|
void NFMDemod::configure(MessageQueue* messageQueue,
|
|
|
|
Real rfBandwidth,
|
|
|
|
Real afBandwidth,
|
|
|
|
Real volume,
|
|
|
|
Real squelch,
|
|
|
|
bool ctcssOn)
|
2014-05-18 11:52:39 -04:00
|
|
|
{
|
2015-08-31 02:47:46 -04:00
|
|
|
Message* cmd = MsgConfigureNFMDemod::create(rfBandwidth,
|
|
|
|
afBandwidth,
|
|
|
|
volume,
|
|
|
|
squelch,
|
|
|
|
ctcssOn);
|
2015-08-17 02:29:34 -04:00
|
|
|
messageQueue->push(cmd);
|
2014-05-18 11:52:39 -04:00
|
|
|
}
|
|
|
|
|
2015-01-26 14:33:28 -05:00
|
|
|
float arctan2(Real y, Real x)
|
|
|
|
{
|
|
|
|
Real coeff_1 = M_PI / 4;
|
|
|
|
Real coeff_2 = 3 * coeff_1;
|
|
|
|
Real abs_y = fabs(y) + 1e-10; // kludge to prevent 0/0 condition
|
|
|
|
Real angle;
|
|
|
|
if( x>= 0) {
|
|
|
|
Real r = (x - abs_y) / (x + abs_y);
|
|
|
|
angle = coeff_1 - coeff_1 * r;
|
|
|
|
} else {
|
|
|
|
Real r = (x + abs_y) / (abs_y - x);
|
|
|
|
angle = coeff_2 - coeff_1 * r;
|
|
|
|
}
|
|
|
|
if(y < 0)
|
|
|
|
return(-angle);
|
|
|
|
else return(angle);
|
|
|
|
}
|
|
|
|
|
|
|
|
Real angleDist(Real a, Real b)
|
|
|
|
{
|
|
|
|
Real dist = b - a;
|
|
|
|
|
|
|
|
while(dist <= M_PI)
|
|
|
|
dist += 2 * M_PI;
|
|
|
|
while(dist >= M_PI)
|
|
|
|
dist -= 2 * M_PI;
|
|
|
|
|
|
|
|
return dist;
|
|
|
|
}
|
|
|
|
|
2015-08-25 02:24:23 -04:00
|
|
|
void NFMDemod::feed(const SampleVector::const_iterator& begin, const SampleVector::const_iterator& end, bool firstOfBurst)
|
2014-05-18 11:52:39 -04:00
|
|
|
{
|
|
|
|
Complex ci;
|
|
|
|
|
2015-08-24 16:09:46 -04:00
|
|
|
m_settingsMutex.lock();
|
2015-01-26 14:33:28 -05:00
|
|
|
|
2015-08-19 21:38:31 -04:00
|
|
|
for (SampleVector::const_iterator it = begin; it != end; ++it)
|
|
|
|
{
|
2014-05-18 11:52:39 -04:00
|
|
|
Complex c(it->real() / 32768.0, it->imag() / 32768.0);
|
|
|
|
c *= m_nco.nextIQ();
|
|
|
|
|
2015-01-26 14:33:28 -05:00
|
|
|
{
|
2015-08-19 21:38:31 -04:00
|
|
|
if (m_interpolator.interpolate(&m_interpolatorDistanceRemain, c, &ci))
|
|
|
|
{
|
2015-01-26 14:33:28 -05:00
|
|
|
|
|
|
|
qint16 sample;
|
2015-06-16 02:15:28 -04:00
|
|
|
|
2015-06-20 03:28:57 -04:00
|
|
|
//m_AGC.feed(abs(ci));
|
|
|
|
//ci *= (m_agcLevel / m_AGC.getValue());
|
|
|
|
|
|
|
|
m_AGC.feed(ci);
|
2015-06-19 02:27:29 -04:00
|
|
|
|
|
|
|
// demod
|
|
|
|
/*
|
|
|
|
Real argument = arg(ci);
|
|
|
|
Real demod = argument - m_lastArgument;
|
|
|
|
m_lastArgument = argument;
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
// Original NFM
|
|
|
|
Complex d = conj(m_m1Sample) * ci;
|
|
|
|
Real demod = atan2(d.imag(), d.real());
|
|
|
|
demod /= M_PI;
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
Real argument1 = arg(ci);//atan2(ci.imag(), ci.real());
|
|
|
|
Real argument2 = m_lastSample.real();
|
|
|
|
Real demod = angleDist(argument2, argument1);
|
|
|
|
m_lastSample = Complex(argument1, 0);
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Alternative without atan - needs AGC
|
|
|
|
// http://www.embedded.com/design/configurable-systems/4212086/DSP-Tricks--Frequency-demodulation-algorithms-
|
|
|
|
Real ip = ci.real() - m_m2Sample.real();
|
|
|
|
Real qp = ci.imag() - m_m2Sample.imag();
|
|
|
|
Real h1 = m_m1Sample.real() * qp;
|
|
|
|
Real h2 = m_m1Sample.imag() * ip;
|
2015-09-06 19:15:55 -04:00
|
|
|
Real demod = (h1 - h2) * 30; // 10000
|
2015-06-19 02:27:29 -04:00
|
|
|
|
|
|
|
m_m2Sample = m_m1Sample;
|
|
|
|
m_m1Sample = ci;
|
|
|
|
m_sampleCount++;
|
|
|
|
|
|
|
|
// AF processing
|
|
|
|
|
2015-08-19 21:38:31 -04:00
|
|
|
if(m_afSquelch.analyze(&demod))
|
|
|
|
{
|
2015-06-19 02:27:29 -04:00
|
|
|
m_squelchOpen = m_afSquelch.open();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_squelchOpen)
|
|
|
|
{
|
2015-08-31 02:47:46 -04:00
|
|
|
if (m_running.m_ctcssOn)
|
2015-06-16 02:15:28 -04:00
|
|
|
{
|
2015-08-31 02:47:46 -04:00
|
|
|
Real ctcss_sample = m_lowpass.filter(demod);
|
2015-06-16 02:15:28 -04:00
|
|
|
|
2015-08-31 02:47:46 -04:00
|
|
|
if ((m_sampleCount & 7) == 7) // decimate 48k -> 6k
|
|
|
|
{
|
|
|
|
if (m_ctcssDetector.analyze(&ctcss_sample))
|
2015-06-16 02:15:28 -04:00
|
|
|
{
|
2015-08-31 02:47:46 -04:00
|
|
|
int maxToneIndex;
|
|
|
|
|
|
|
|
if (m_ctcssDetector.getDetectedTone(maxToneIndex))
|
2015-08-19 21:38:31 -04:00
|
|
|
{
|
2015-08-31 02:47:46 -04:00
|
|
|
if (maxToneIndex+1 != m_ctcssIndex)
|
|
|
|
{
|
|
|
|
m_nfmDemodGUI->setCtcssFreq(m_ctcssDetector.getToneSet()[maxToneIndex]);
|
|
|
|
m_ctcssIndex = maxToneIndex+1;
|
|
|
|
}
|
2015-06-16 19:42:58 -04:00
|
|
|
}
|
2015-08-31 02:47:46 -04:00
|
|
|
else
|
2015-08-19 21:38:31 -04:00
|
|
|
{
|
2015-08-31 02:47:46 -04:00
|
|
|
if (m_ctcssIndex != 0)
|
|
|
|
{
|
|
|
|
m_nfmDemodGUI->setCtcssFreq(0);
|
|
|
|
m_ctcssIndex = 0;
|
|
|
|
}
|
2015-06-16 19:42:58 -04:00
|
|
|
}
|
2015-06-16 02:15:28 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-31 02:47:46 -04:00
|
|
|
if (m_running.m_ctcssOn && m_ctcssIndexSelected && (m_ctcssIndexSelected != m_ctcssIndex))
|
2015-06-16 19:42:58 -04:00
|
|
|
{
|
2015-06-19 02:27:29 -04:00
|
|
|
sample = 0;
|
2015-06-16 19:42:58 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
demod = m_bandpass.filter(demod);
|
|
|
|
demod *= m_running.m_volume;
|
2015-09-06 19:15:55 -04:00
|
|
|
sample = demod * ((1<<15)/301) * m_AGC.getDelayedValue(); // denominator = bandpass filter number of taps
|
2015-06-16 19:42:58 -04:00
|
|
|
}
|
2015-08-29 03:41:39 -04:00
|
|
|
|
|
|
|
m_AGC.openedSquelch();
|
2015-06-16 19:42:58 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-08-19 21:38:31 -04:00
|
|
|
if (m_ctcssIndex != 0)
|
|
|
|
{
|
2015-06-16 19:42:58 -04:00
|
|
|
m_nfmDemodGUI->setCtcssFreq(0);
|
|
|
|
m_ctcssIndex = 0;
|
|
|
|
}
|
2015-01-26 14:33:28 -05:00
|
|
|
|
2015-08-29 03:41:39 -04:00
|
|
|
m_AGC.closedSquelch();
|
2015-01-26 14:33:28 -05:00
|
|
|
sample = 0;
|
|
|
|
}
|
|
|
|
|
2014-05-18 11:52:39 -04:00
|
|
|
m_audioBuffer[m_audioBufferFill].l = sample;
|
|
|
|
m_audioBuffer[m_audioBufferFill].r = sample;
|
|
|
|
++m_audioBufferFill;
|
2015-08-19 21:38:31 -04:00
|
|
|
|
|
|
|
if (m_audioBufferFill >= m_audioBuffer.size())
|
|
|
|
{
|
2015-08-23 20:06:11 -04:00
|
|
|
uint res = m_audioFifo.write((const quint8*)&m_audioBuffer[0], m_audioBufferFill, 10);
|
2015-08-19 21:38:31 -04:00
|
|
|
|
|
|
|
if (res != m_audioBufferFill)
|
|
|
|
{
|
2015-08-23 20:06:11 -04:00
|
|
|
qDebug("NFMDemod::feed: %u/%u audio samples written", res, m_audioBufferFill);
|
|
|
|
}
|
2015-08-19 21:38:31 -04:00
|
|
|
|
2014-05-18 11:52:39 -04:00
|
|
|
m_audioBufferFill = 0;
|
|
|
|
}
|
|
|
|
|
2015-01-26 14:33:28 -05:00
|
|
|
m_interpolatorDistanceRemain += m_interpolatorDistance;
|
|
|
|
}
|
2014-05-18 11:52:39 -04:00
|
|
|
}
|
|
|
|
}
|
2015-08-19 21:38:31 -04:00
|
|
|
|
|
|
|
if (m_audioBufferFill > 0)
|
|
|
|
{
|
2015-08-23 20:06:11 -04:00
|
|
|
uint res = m_audioFifo.write((const quint8*)&m_audioBuffer[0], m_audioBufferFill, 10);
|
2015-08-19 21:38:31 -04:00
|
|
|
|
|
|
|
if (res != m_audioBufferFill)
|
|
|
|
{
|
2015-08-23 20:06:11 -04:00
|
|
|
qDebug("NFMDemod::feed: %u/%u tail samples written", res, m_audioBufferFill);
|
|
|
|
}
|
2015-08-19 21:38:31 -04:00
|
|
|
|
2015-01-26 14:33:28 -05:00
|
|
|
m_audioBufferFill = 0;
|
|
|
|
}
|
2014-05-18 11:52:39 -04:00
|
|
|
|
2015-08-24 16:09:46 -04:00
|
|
|
m_settingsMutex.unlock();
|
2014-05-18 11:52:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void NFMDemod::start()
|
|
|
|
{
|
2015-08-23 20:06:11 -04:00
|
|
|
m_audioFifo.clear();
|
2015-05-14 09:15:10 -04:00
|
|
|
m_m1Sample = 0;
|
2014-05-18 11:52:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void NFMDemod::stop()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2015-08-17 02:29:34 -04:00
|
|
|
bool NFMDemod::handleMessage(const Message& cmd)
|
2014-05-18 11:52:39 -04:00
|
|
|
{
|
2015-08-17 02:29:34 -04:00
|
|
|
qDebug() << "NFMDemod::handleMessage";
|
|
|
|
|
2015-08-19 16:12:52 -04:00
|
|
|
if (Channelizer::MsgChannelizerNotification::match(cmd))
|
2015-08-17 02:29:34 -04:00
|
|
|
{
|
2015-08-19 16:12:52 -04:00
|
|
|
Channelizer::MsgChannelizerNotification& notif = (Channelizer::MsgChannelizerNotification&) cmd;
|
2015-08-17 02:29:34 -04:00
|
|
|
|
|
|
|
m_config.m_inputSampleRate = notif.getSampleRate();
|
|
|
|
m_config.m_inputFrequencyOffset = notif.getFrequencyOffset();
|
2015-01-26 14:33:28 -05:00
|
|
|
|
|
|
|
apply();
|
2015-08-17 02:29:34 -04:00
|
|
|
|
2015-08-19 16:12:52 -04:00
|
|
|
qDebug() << "NFMDemod::handleMessage: MsgChannelizerNotification: m_inputSampleRate: " << m_config.m_inputSampleRate
|
2015-08-17 02:29:34 -04:00
|
|
|
<< " m_inputFrequencyOffset: " << m_config.m_inputFrequencyOffset;
|
|
|
|
|
2014-05-18 11:52:39 -04:00
|
|
|
return true;
|
2015-08-17 02:29:34 -04:00
|
|
|
}
|
|
|
|
else if (MsgConfigureNFMDemod::match(cmd))
|
|
|
|
{
|
|
|
|
MsgConfigureNFMDemod& cfg = (MsgConfigureNFMDemod&) cmd;
|
|
|
|
|
|
|
|
m_config.m_rfBandwidth = cfg.getRFBandwidth();
|
|
|
|
m_config.m_afBandwidth = cfg.getAFBandwidth();
|
|
|
|
m_config.m_volume = cfg.getVolume();
|
|
|
|
m_config.m_squelch = cfg.getSquelch();
|
2015-08-31 02:47:46 -04:00
|
|
|
m_config.m_ctcssOn = cfg.getCtcssOn();
|
2015-08-17 02:29:34 -04:00
|
|
|
|
2015-01-26 14:33:28 -05:00
|
|
|
apply();
|
2015-08-17 02:29:34 -04:00
|
|
|
|
|
|
|
qDebug() << " - MsgConfigureNFMDemod: m_rfBandwidth: " << m_config.m_rfBandwidth
|
|
|
|
<< " m_afBandwidth: " << m_config.m_afBandwidth
|
|
|
|
<< " m_volume: " << m_config.m_volume
|
2015-08-31 02:47:46 -04:00
|
|
|
<< " m_squelch: " << m_config.m_squelch
|
|
|
|
<< " m_ctcssOn: " << m_config.m_ctcssOn;
|
2015-08-17 02:29:34 -04:00
|
|
|
|
2014-05-18 11:52:39 -04:00
|
|
|
return true;
|
2015-08-17 02:29:34 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-08-23 20:06:11 -04:00
|
|
|
return false;
|
2014-05-18 11:52:39 -04:00
|
|
|
}
|
|
|
|
}
|
2015-01-26 14:33:28 -05:00
|
|
|
|
|
|
|
void NFMDemod::apply()
|
|
|
|
{
|
2015-08-31 02:47:46 -04:00
|
|
|
if ((m_config.m_inputFrequencyOffset != m_running.m_inputFrequencyOffset) ||
|
2015-08-17 02:29:34 -04:00
|
|
|
(m_config.m_inputSampleRate != m_running.m_inputSampleRate))
|
|
|
|
{
|
2015-01-26 14:33:28 -05:00
|
|
|
m_nco.setFreq(-m_config.m_inputFrequencyOffset, m_config.m_inputSampleRate);
|
|
|
|
}
|
|
|
|
|
2015-08-31 02:47:46 -04:00
|
|
|
if ((m_config.m_inputSampleRate != m_running.m_inputSampleRate) ||
|
2015-08-17 02:29:34 -04:00
|
|
|
(m_config.m_rfBandwidth != m_running.m_rfBandwidth))
|
|
|
|
{
|
2015-08-24 16:09:46 -04:00
|
|
|
m_settingsMutex.lock();
|
2015-01-26 14:33:28 -05:00
|
|
|
m_interpolator.create(16, m_config.m_inputSampleRate, m_config.m_rfBandwidth / 2.2);
|
|
|
|
m_interpolatorDistanceRemain = 0;
|
2015-06-07 13:31:35 -04:00
|
|
|
m_interpolatorDistance = (Real) m_config.m_inputSampleRate / (Real) m_config.m_audioSampleRate;
|
2015-08-24 16:09:46 -04:00
|
|
|
m_settingsMutex.unlock();
|
2015-01-26 14:33:28 -05:00
|
|
|
}
|
|
|
|
|
2015-08-31 02:47:46 -04:00
|
|
|
if ((m_config.m_afBandwidth != m_running.m_afBandwidth) ||
|
2015-08-17 02:29:34 -04:00
|
|
|
(m_config.m_audioSampleRate != m_running.m_audioSampleRate))
|
|
|
|
{
|
2015-08-24 16:09:46 -04:00
|
|
|
m_settingsMutex.lock();
|
2015-06-16 02:15:28 -04:00
|
|
|
m_lowpass.create(301, m_config.m_audioSampleRate, 250.0);
|
2015-06-15 13:50:09 -04:00
|
|
|
m_bandpass.create(301, m_config.m_audioSampleRate, 300.0, m_config.m_afBandwidth);
|
2015-08-24 16:09:46 -04:00
|
|
|
m_settingsMutex.unlock();
|
2015-01-26 14:33:28 -05:00
|
|
|
}
|
|
|
|
|
2015-08-31 02:47:46 -04:00
|
|
|
if (m_config.m_squelch != m_running.m_squelch)
|
2015-08-17 02:29:34 -04:00
|
|
|
{
|
2015-06-19 02:27:29 -04:00
|
|
|
m_squelchLevel = pow(10.0, m_config.m_squelch / 10.0);
|
2015-01-26 14:33:28 -05:00
|
|
|
m_squelchLevel *= m_squelchLevel;
|
2015-06-19 02:27:29 -04:00
|
|
|
m_afSquelch.setThreshold(m_squelchLevel);
|
|
|
|
m_afSquelch.reset();
|
2015-01-26 14:33:28 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
m_running.m_inputSampleRate = m_config.m_inputSampleRate;
|
|
|
|
m_running.m_inputFrequencyOffset = m_config.m_inputFrequencyOffset;
|
|
|
|
m_running.m_rfBandwidth = m_config.m_rfBandwidth;
|
2015-08-23 22:09:36 -04:00
|
|
|
m_running.m_afBandwidth = m_config.m_afBandwidth;
|
2015-01-26 14:33:28 -05:00
|
|
|
m_running.m_squelch = m_config.m_squelch;
|
|
|
|
m_running.m_volume = m_config.m_volume;
|
|
|
|
m_running.m_audioSampleRate = m_config.m_audioSampleRate;
|
2015-08-31 02:47:46 -04:00
|
|
|
m_running.m_ctcssOn = m_config.m_ctcssOn;
|
2015-01-26 14:33:28 -05:00
|
|
|
}
|