2014-11-16 17:39:50 -05: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/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2016-10-02 07:18:07 -04:00
|
|
|
#include "../../channelrx/demodwfm/wfmdemod.h"
|
|
|
|
|
2014-11-16 17:39:50 -05:00
|
|
|
#include <QTime>
|
2015-08-17 02:29:34 -04:00
|
|
|
#include <QDebug>
|
2014-11-16 17:39:50 -05:00
|
|
|
#include <stdio.h>
|
2015-05-14 05:08:23 -04:00
|
|
|
#include <complex.h>
|
2016-10-02 15:52:39 -04:00
|
|
|
#include <dsp/downchannelizer.h>
|
2014-11-16 17:39:50 -05:00
|
|
|
#include "audio/audiooutput.h"
|
2015-08-23 20:59:18 -04:00
|
|
|
#include "dsp/dspengine.h"
|
2015-05-14 05:08:23 -04:00
|
|
|
#include "dsp/pidcontroller.h"
|
|
|
|
|
2014-11-16 17:39:50 -05:00
|
|
|
MESSAGE_CLASS_DEFINITION(WFMDemod::MsgConfigureWFMDemod, Message)
|
|
|
|
|
2016-10-02 16:29:04 -04:00
|
|
|
WFMDemod::WFMDemod(BasebandSampleSink* sampleSink) :
|
2017-04-26 05:09:07 -04:00
|
|
|
m_squelchOpen(false),
|
|
|
|
m_magsq(0.0f),
|
|
|
|
m_magsqSum(0.0f),
|
|
|
|
m_magsqPeak(0.0f),
|
2017-05-11 12:39:00 -04:00
|
|
|
m_magsqCount(0),
|
2017-05-25 14:13:34 -04:00
|
|
|
m_movingAverage(40, 0),
|
|
|
|
m_sampleSink(sampleSink),
|
2017-08-24 18:02:49 -04:00
|
|
|
m_audioFifo(250000),
|
2017-05-25 14:13:34 -04:00
|
|
|
m_settingsMutex(QMutex::Recursive)
|
2017-04-26 05:09:07 -04:00
|
|
|
|
2014-11-16 17:39:50 -05:00
|
|
|
{
|
2015-08-12 03:03:02 -04:00
|
|
|
setObjectName("WFMDemod");
|
|
|
|
|
2015-05-15 05:29:41 -04:00
|
|
|
m_config.m_inputSampleRate = 384000;
|
2015-05-14 05:08:23 -04:00
|
|
|
m_config.m_inputFrequencyOffset = 0;
|
|
|
|
m_config.m_rfBandwidth = 180000;
|
|
|
|
m_config.m_afBandwidth = 15000;
|
|
|
|
m_config.m_squelch = -60.0;
|
|
|
|
m_config.m_volume = 2.0;
|
2015-08-23 20:59:18 -04:00
|
|
|
m_config.m_audioSampleRate = DSPEngine::instance()->getAudioSampleRate();
|
2015-05-15 05:29:41 -04:00
|
|
|
m_rfFilter = new fftfilt(-50000.0 / 384000.0, 50000.0 / 384000.0, rfFilterFftLength);
|
2015-12-16 19:01:22 -05:00
|
|
|
m_phaseDiscri.setFMScaling(384000/75000);
|
2014-11-16 17:39:50 -05:00
|
|
|
|
2015-05-14 05:08:23 -04:00
|
|
|
apply();
|
2014-11-16 17:39:50 -05:00
|
|
|
|
2015-05-14 05:08:23 -04:00
|
|
|
m_audioBuffer.resize(16384);
|
2014-11-16 17:39:50 -05:00
|
|
|
m_audioBufferFill = 0;
|
2014-12-22 14:33:50 -05:00
|
|
|
|
2015-05-14 05:08:23 -04:00
|
|
|
m_movingAverage.resize(16, 0);
|
2015-08-23 20:59:18 -04:00
|
|
|
|
|
|
|
DSPEngine::instance()->addAudioSink(&m_audioFifo);
|
2014-11-16 17:39:50 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
WFMDemod::~WFMDemod()
|
|
|
|
{
|
2015-05-15 05:29:41 -04:00
|
|
|
if (m_rfFilter)
|
2015-08-17 02:29:34 -04:00
|
|
|
{
|
2015-05-15 05:29:41 -04:00
|
|
|
delete m_rfFilter;
|
2015-08-17 02:29:34 -04:00
|
|
|
}
|
2015-08-23 20:59:18 -04:00
|
|
|
|
|
|
|
DSPEngine::instance()->removeAudioSink(&m_audioFifo);
|
2014-11-16 17:39:50 -05:00
|
|
|
}
|
|
|
|
|
2017-04-26 04:04:02 -04:00
|
|
|
void WFMDemod::configure(
|
|
|
|
MessageQueue* messageQueue,
|
|
|
|
Real rfBandwidth,
|
|
|
|
Real afBandwidth,
|
|
|
|
Real volume,
|
|
|
|
Real squelch,
|
|
|
|
bool audioMute)
|
2014-11-16 17:39:50 -05:00
|
|
|
{
|
2017-04-26 04:04:02 -04:00
|
|
|
Message* cmd = MsgConfigureWFMDemod::create(rfBandwidth, afBandwidth, volume, squelch, audioMute);
|
2015-08-17 02:29:34 -04:00
|
|
|
messageQueue->push(cmd);
|
2014-11-16 17:39:50 -05:00
|
|
|
}
|
|
|
|
|
2017-05-25 14:13:34 -04:00
|
|
|
void WFMDemod::feed(const SampleVector::const_iterator& begin, const SampleVector::const_iterator& end, bool firstOfBurst __attribute__((unused)))
|
2015-05-14 05:08:23 -04:00
|
|
|
{
|
|
|
|
Complex ci;
|
2015-05-15 05:29:41 -04:00
|
|
|
fftfilt::cmplx *rf;
|
|
|
|
int rf_out;
|
2017-04-25 22:33:25 -04:00
|
|
|
Real demod;
|
|
|
|
double msq;
|
|
|
|
float fmDev;
|
2015-05-14 05:08:23 -04:00
|
|
|
|
2015-08-24 16:09:46 -04:00
|
|
|
m_settingsMutex.lock();
|
2015-05-14 05:08:23 -04:00
|
|
|
|
2015-05-15 05:29:41 -04:00
|
|
|
for (SampleVector::const_iterator it = begin; it != end; ++it)
|
|
|
|
{
|
2017-04-26 05:09:07 -04:00
|
|
|
//Complex c(it->real() / 32768.0f, it->imag() / 32768.0f);
|
|
|
|
Complex c(it->real(), it->imag());
|
2015-05-14 05:08:23 -04:00
|
|
|
c *= m_nco.nextIQ();
|
|
|
|
|
2015-05-15 05:29:41 -04:00
|
|
|
rf_out = m_rfFilter->runFilt(c, &rf); // filter RF before demod
|
|
|
|
|
2017-04-26 05:09:07 -04:00
|
|
|
for (int i = 0 ; i < rf_out; i++)
|
2015-05-14 05:08:23 -04:00
|
|
|
{
|
2017-04-25 22:33:25 -04:00
|
|
|
demod = m_phaseDiscri.phaseDiscriminatorDelta(rf[i], msq, fmDev);
|
2017-04-26 05:09:07 -04:00
|
|
|
Real magsq = msq / (1<<30);
|
|
|
|
|
|
|
|
m_movingAverage.feed(magsq);
|
|
|
|
m_magsqSum += magsq;
|
|
|
|
|
|
|
|
if (magsq > m_magsqPeak)
|
|
|
|
{
|
|
|
|
m_magsqPeak = magsq;
|
|
|
|
}
|
2015-05-15 09:05:28 -04:00
|
|
|
|
2017-04-26 05:09:07 -04:00
|
|
|
m_magsqCount++;
|
2015-05-15 09:05:28 -04:00
|
|
|
|
|
|
|
if(m_movingAverage.average() >= m_squelchLevel)
|
|
|
|
m_squelchState = m_running.m_rfBandwidth / 20; // decay rate
|
|
|
|
|
2017-04-26 04:04:02 -04:00
|
|
|
if (m_squelchState > 0)
|
2015-05-15 09:05:28 -04:00
|
|
|
{
|
|
|
|
m_squelchState--;
|
2017-04-26 04:04:02 -04:00
|
|
|
m_squelchOpen = true;
|
2015-05-15 09:05:28 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
demod = 0;
|
2017-04-26 04:04:02 -04:00
|
|
|
m_squelchOpen = false;
|
2015-05-15 09:05:28 -04:00
|
|
|
}
|
|
|
|
|
2017-04-26 04:04:02 -04:00
|
|
|
if (m_running.m_audioMute)
|
|
|
|
{
|
|
|
|
demod = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
Complex e(demod, 0);
|
2015-05-15 05:29:41 -04:00
|
|
|
|
2016-10-09 19:53:32 -04:00
|
|
|
if(m_interpolator.decimate(&m_interpolatorDistanceRemain, e, &ci))
|
2015-05-15 05:29:41 -04:00
|
|
|
{
|
2017-04-25 22:33:25 -04:00
|
|
|
quint16 sample = (qint16)(ci.real() * 3276.8f * m_running.m_volume);
|
2015-05-15 05:29:41 -04:00
|
|
|
m_sampleBuffer.push_back(Sample(sample, sample));
|
|
|
|
m_audioBuffer[m_audioBufferFill].l = sample;
|
|
|
|
m_audioBuffer[m_audioBufferFill].r = sample;
|
|
|
|
++m_audioBufferFill;
|
|
|
|
|
|
|
|
if(m_audioBufferFill >= m_audioBuffer.size())
|
|
|
|
{
|
2015-08-23 20:59:18 -04:00
|
|
|
uint res = m_audioFifo.write((const quint8*)&m_audioBuffer[0], m_audioBufferFill, 1);
|
|
|
|
|
2015-05-15 05:29:41 -04:00
|
|
|
if(res != m_audioBufferFill)
|
2015-08-23 20:59:18 -04:00
|
|
|
{
|
|
|
|
qDebug("WFMDemod::feed: %u/%u audio samples written", res, m_audioBufferFill);
|
|
|
|
}
|
|
|
|
|
2015-05-15 05:29:41 -04:00
|
|
|
m_audioBufferFill = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_interpolatorDistanceRemain += m_interpolatorDistance;
|
|
|
|
}
|
|
|
|
}
|
2014-11-16 17:39:50 -05:00
|
|
|
}
|
2015-05-15 05:29:41 -04:00
|
|
|
|
2015-08-23 20:59:18 -04:00
|
|
|
if(m_audioBufferFill > 0)
|
|
|
|
{
|
|
|
|
uint res = m_audioFifo.write((const quint8*)&m_audioBuffer[0], m_audioBufferFill, 1);
|
|
|
|
|
2015-05-14 05:08:23 -04:00
|
|
|
if(res != m_audioBufferFill)
|
2015-08-23 20:59:18 -04:00
|
|
|
{
|
|
|
|
qDebug("WFMDemod::feed: %u/%u tail samples written", res, m_audioBufferFill);
|
|
|
|
}
|
|
|
|
|
2015-05-14 05:08:23 -04:00
|
|
|
m_audioBufferFill = 0;
|
|
|
|
}
|
2014-11-16 17:39:50 -05:00
|
|
|
|
|
|
|
if(m_sampleSink != NULL)
|
2015-08-23 20:59:18 -04:00
|
|
|
{
|
2015-05-14 05:08:23 -04:00
|
|
|
m_sampleSink->feed(m_sampleBuffer.begin(), m_sampleBuffer.end(), false);
|
2015-08-23 20:59:18 -04:00
|
|
|
}
|
|
|
|
|
2014-11-16 17:39:50 -05:00
|
|
|
m_sampleBuffer.clear();
|
2015-08-24 16:09:46 -04:00
|
|
|
|
|
|
|
m_settingsMutex.unlock();
|
2014-11-16 17:39:50 -05:00
|
|
|
}
|
|
|
|
|
2015-05-14 05:08:23 -04:00
|
|
|
void WFMDemod::start()
|
|
|
|
{
|
|
|
|
m_squelchState = 0;
|
2015-08-23 20:59:18 -04:00
|
|
|
m_audioFifo.clear();
|
2015-12-16 19:01:22 -05:00
|
|
|
m_phaseDiscri.reset();
|
2015-05-14 05:08:23 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void WFMDemod::stop()
|
|
|
|
{
|
|
|
|
}
|
2014-11-16 17:39:50 -05:00
|
|
|
|
2015-08-17 02:29:34 -04:00
|
|
|
bool WFMDemod::handleMessage(const Message& cmd)
|
2014-11-16 17:39:50 -05:00
|
|
|
{
|
2016-10-02 15:52:39 -04:00
|
|
|
if (DownChannelizer::MsgChannelizerNotification::match(cmd))
|
2015-08-17 02:29:34 -04:00
|
|
|
{
|
2016-10-02 15:52:39 -04:00
|
|
|
DownChannelizer::MsgChannelizerNotification& notif = (DownChannelizer::MsgChannelizerNotification&) cmd;
|
2015-05-14 05:08:23 -04:00
|
|
|
|
2015-08-17 02:29:34 -04:00
|
|
|
m_config.m_inputSampleRate = notif.getSampleRate();
|
|
|
|
m_config.m_inputFrequencyOffset = notif.getFrequencyOffset();
|
2015-08-23 20:59:18 -04:00
|
|
|
|
2017-04-25 22:33:25 -04:00
|
|
|
qDebug() << "WFMDemod::handleMessage: MsgChannelizerNotification: m_inputSampleRate: " << m_config.m_inputSampleRate
|
|
|
|
<< " m_inputFrequencyOffset: " << m_config.m_inputFrequencyOffset;
|
2015-08-17 02:29:34 -04:00
|
|
|
|
2017-04-25 22:33:25 -04:00
|
|
|
apply();
|
2015-08-17 02:29:34 -04:00
|
|
|
|
2014-11-16 17:39:50 -05:00
|
|
|
return true;
|
2015-08-17 02:29:34 -04:00
|
|
|
}
|
|
|
|
else if (MsgConfigureWFMDemod::match(cmd))
|
|
|
|
{
|
|
|
|
MsgConfigureWFMDemod& cfg = (MsgConfigureWFMDemod&) 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();
|
2017-04-26 04:04:02 -04:00
|
|
|
m_config.m_audioMute = cfg.getAudioMute();
|
2015-08-23 22:09:36 -04:00
|
|
|
|
2017-04-25 22:33:25 -04:00
|
|
|
qDebug() << "WFMDemod::handleMessage: MsgConfigureWFMDemod: m_rfBandwidth: " << m_config.m_rfBandwidth
|
|
|
|
<< " m_afBandwidth: " << m_config.m_afBandwidth
|
|
|
|
<< " m_volume: " << m_config.m_volume
|
2017-04-26 04:04:02 -04:00
|
|
|
<< " m_squelch: " << m_config.m_squelch
|
|
|
|
<< " m_audioMute: " << m_config.m_audioMute;
|
2015-08-17 02:29:34 -04:00
|
|
|
|
2017-04-25 22:33:25 -04:00
|
|
|
apply();
|
2015-08-17 02:29:34 -04:00
|
|
|
|
2014-11-16 17:39:50 -05:00
|
|
|
return true;
|
2015-08-17 02:29:34 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (m_sampleSink != 0)
|
|
|
|
{
|
2015-08-23 22:09:36 -04:00
|
|
|
return m_sampleSink->handleMessage(cmd);
|
2015-08-17 02:29:34 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2014-11-16 17:39:50 -05:00
|
|
|
}
|
|
|
|
}
|
2015-05-14 05:08:23 -04:00
|
|
|
|
|
|
|
void WFMDemod::apply()
|
|
|
|
{
|
|
|
|
|
|
|
|
if((m_config.m_inputFrequencyOffset != m_running.m_inputFrequencyOffset) ||
|
2015-05-15 05:29:41 -04:00
|
|
|
(m_config.m_inputSampleRate != m_running.m_inputSampleRate))
|
|
|
|
{
|
2017-04-25 22:33:25 -04:00
|
|
|
qDebug() << "WFMDemod::apply: m_nco.setFreq";
|
2015-05-14 05:08:23 -04:00
|
|
|
m_nco.setFreq(-m_config.m_inputFrequencyOffset, m_config.m_inputSampleRate);
|
|
|
|
}
|
|
|
|
|
|
|
|
if((m_config.m_inputSampleRate != m_running.m_inputSampleRate) ||
|
2017-01-05 04:12:22 -05:00
|
|
|
(m_config.m_audioSampleRate != m_running.m_audioSampleRate) ||
|
2017-04-25 22:33:25 -04:00
|
|
|
(m_config.m_afBandwidth != m_running.m_afBandwidth) ||
|
|
|
|
(m_config.m_rfBandwidth != m_running.m_rfBandwidth))
|
2015-05-15 05:29:41 -04:00
|
|
|
{
|
2015-08-24 16:09:46 -04:00
|
|
|
m_settingsMutex.lock();
|
2017-04-25 22:33:25 -04:00
|
|
|
qDebug() << "WFMDemod::apply: m_interpolator.create";
|
2015-05-15 05:29:41 -04:00
|
|
|
m_interpolator.create(16, m_config.m_inputSampleRate, m_config.m_afBandwidth);
|
2017-01-05 04:12:22 -05:00
|
|
|
m_interpolatorDistanceRemain = (Real) m_config.m_inputSampleRate / (Real) m_config.m_audioSampleRate;
|
2015-06-07 17:07:19 -04:00
|
|
|
m_interpolatorDistance = (Real) m_config.m_inputSampleRate / (Real) m_config.m_audioSampleRate;
|
2017-04-25 22:33:25 -04:00
|
|
|
qDebug() << "WFMDemod::apply: m_rfFilter->create_filter";
|
|
|
|
Real lowCut = -(m_config.m_rfBandwidth / 2.0) / m_config.m_inputSampleRate;
|
|
|
|
Real hiCut = (m_config.m_rfBandwidth / 2.0) / m_config.m_inputSampleRate;
|
|
|
|
m_rfFilter->create_filter(lowCut, hiCut);
|
|
|
|
m_fmExcursion = m_config.m_rfBandwidth / (Real) m_config.m_inputSampleRate;
|
|
|
|
m_phaseDiscri.setFMScaling(1.0f/m_fmExcursion);
|
|
|
|
qDebug("WFMDemod::apply: m_fmExcursion: %f", m_fmExcursion);
|
2015-08-24 16:09:46 -04:00
|
|
|
m_settingsMutex.unlock();
|
2015-05-15 05:29:41 -04:00
|
|
|
}
|
|
|
|
|
2017-01-05 04:12:22 -05:00
|
|
|
if(m_config.m_squelch != m_running.m_squelch)
|
2015-05-15 05:29:41 -04:00
|
|
|
{
|
2017-04-25 22:33:25 -04:00
|
|
|
qDebug() << "WFMDemod::apply: set m_squelchLevel";
|
2015-05-14 05:08:23 -04:00
|
|
|
m_squelchLevel = pow(10.0, m_config.m_squelch / 20.0);
|
|
|
|
m_squelchLevel *= m_squelchLevel;
|
|
|
|
}
|
|
|
|
|
|
|
|
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-05-14 05:08:23 -04: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;
|
2017-04-26 04:04:02 -04:00
|
|
|
m_running.m_audioMute = m_config.m_audioMute;
|
2015-05-14 05:08:23 -04:00
|
|
|
}
|