2015-05-11 20:53:35 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2015 Edouard Griffiths, F4EXB. //
|
|
|
|
// //
|
|
|
|
// 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-20 12:04:15 -04:00
|
|
|
#include "amdemod.h"
|
2015-05-11 20:53:35 -04:00
|
|
|
|
|
|
|
#include <QTime>
|
2015-08-17 02:29:34 -04:00
|
|
|
#include <QDebug>
|
2015-05-11 20:53:35 -04:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <complex.h>
|
2016-10-02 15:52:39 -04:00
|
|
|
#include <dsp/downchannelizer.h>
|
2015-05-11 20:53:35 -04:00
|
|
|
#include "audio/audiooutput.h"
|
2015-08-23 18:51:27 -04:00
|
|
|
#include "dsp/dspengine.h"
|
2015-05-11 20:53:35 -04:00
|
|
|
#include "dsp/pidcontroller.h"
|
|
|
|
|
|
|
|
MESSAGE_CLASS_DEFINITION(AMDemod::MsgConfigureAMDemod, Message)
|
|
|
|
|
2015-08-23 18:58:54 -04:00
|
|
|
AMDemod::AMDemod() :
|
2016-03-26 23:44:35 -04:00
|
|
|
m_squelchOpen(false),
|
2016-12-04 17:29:59 -05:00
|
|
|
m_magsqSum(0.0f),
|
|
|
|
m_magsqPeak(0.0f),
|
2017-05-11 12:39:00 -04:00
|
|
|
m_magsqCount(0),
|
|
|
|
m_movingAverage(40, 0),
|
2017-05-25 14:13:34 -04:00
|
|
|
m_volumeAGC(4800, 1.0),
|
|
|
|
m_audioFifo(4, 48000),
|
|
|
|
m_settingsMutex(QMutex::Recursive)
|
2015-05-11 20:53:35 -04:00
|
|
|
{
|
2015-08-12 03:03:02 -04:00
|
|
|
setObjectName("AMDemod");
|
|
|
|
|
2015-05-11 20:53:35 -04:00
|
|
|
m_config.m_inputSampleRate = 96000;
|
|
|
|
m_config.m_inputFrequencyOffset = 0;
|
2016-11-30 10:42:06 -05:00
|
|
|
m_config.m_rfBandwidth = 5000;
|
2015-05-11 20:53:35 -04:00
|
|
|
m_config.m_squelch = -40.0;
|
|
|
|
m_config.m_volume = 2.0;
|
2015-08-23 18:51:27 -04:00
|
|
|
m_config.m_audioSampleRate = DSPEngine::instance()->getAudioSampleRate();
|
2015-05-11 20:53:35 -04:00
|
|
|
|
|
|
|
apply();
|
|
|
|
|
2015-08-23 18:51:27 -04:00
|
|
|
m_audioBuffer.resize(1<<14);
|
2015-05-11 20:53:35 -04:00
|
|
|
m_audioBufferFill = 0;
|
|
|
|
|
|
|
|
m_movingAverage.resize(16, 0);
|
2015-05-12 06:12:13 -04:00
|
|
|
m_volumeAGC.resize(4096, 0.003, 0);
|
2015-10-04 05:22:37 -04:00
|
|
|
m_magsq = 0.0;
|
2015-08-23 18:51:27 -04:00
|
|
|
|
|
|
|
DSPEngine::instance()->addAudioSink(&m_audioFifo);
|
2015-05-11 20:53:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
AMDemod::~AMDemod()
|
|
|
|
{
|
2015-08-23 20:06:11 -04:00
|
|
|
DSPEngine::instance()->removeAudioSink(&m_audioFifo);
|
2015-05-11 20:53:35 -04:00
|
|
|
}
|
|
|
|
|
2017-05-12 13:21:52 -04:00
|
|
|
void AMDemod::configure(MessageQueue* messageQueue, Real rfBandwidth, Real volume, Real squelch, bool audioMute, bool bandpassEnable)
|
2015-05-11 20:53:35 -04:00
|
|
|
{
|
2017-05-12 13:21:52 -04:00
|
|
|
Message* cmd = MsgConfigureAMDemod::create(rfBandwidth, volume, squelch, audioMute, bandpassEnable);
|
2015-08-17 02:29:34 -04:00
|
|
|
messageQueue->push(cmd);
|
2015-05-11 20:53:35 -04:00
|
|
|
}
|
|
|
|
|
2017-05-25 14:13:34 -04:00
|
|
|
void AMDemod::feed(const SampleVector::const_iterator& begin, const SampleVector::const_iterator& end, bool firstOfBurst __attribute__((unused)))
|
2015-05-11 20:53:35 -04:00
|
|
|
{
|
|
|
|
Complex ci;
|
|
|
|
|
2015-08-24 17:23:45 -04:00
|
|
|
m_settingsMutex.lock();
|
2015-05-11 20:53:35 -04:00
|
|
|
|
2015-08-17 02:29:34 -04:00
|
|
|
for (SampleVector::const_iterator it = begin; it != end; ++it)
|
|
|
|
{
|
2015-10-04 18:54:14 -04:00
|
|
|
//Complex c(it->real() / 32768.0, it->imag() / 32768.0);
|
|
|
|
Complex c(it->real(), it->imag());
|
2015-05-11 20:53:35 -04:00
|
|
|
c *= m_nco.nextIQ();
|
|
|
|
|
2016-10-27 23:08:53 -04:00
|
|
|
if (m_interpolatorDistance < 1.0f) // interpolate
|
2015-05-11 20:53:35 -04:00
|
|
|
{
|
2016-10-27 23:08:53 -04:00
|
|
|
processOneSample(ci);
|
|
|
|
|
|
|
|
while (m_interpolator.interpolate(&m_interpolatorDistanceRemain, c, &ci))
|
|
|
|
{
|
|
|
|
processOneSample(ci);
|
|
|
|
}
|
|
|
|
|
|
|
|
m_interpolatorDistanceRemain += m_interpolatorDistance;
|
|
|
|
}
|
|
|
|
else // decimate
|
|
|
|
{
|
|
|
|
if (m_interpolator.decimate(&m_interpolatorDistanceRemain, c, &ci))
|
|
|
|
{
|
|
|
|
processOneSample(ci);
|
|
|
|
m_interpolatorDistanceRemain += m_interpolatorDistance;
|
|
|
|
}
|
2015-05-11 20:53:35 -04:00
|
|
|
}
|
|
|
|
}
|
2015-08-17 02:29:34 -04:00
|
|
|
|
|
|
|
if (m_audioBufferFill > 0)
|
|
|
|
{
|
2015-08-23 18:51:27 -04:00
|
|
|
uint res = m_audioFifo.write((const quint8*)&m_audioBuffer[0], m_audioBufferFill, 10);
|
2015-08-17 02:29:34 -04:00
|
|
|
|
|
|
|
if (res != m_audioBufferFill)
|
|
|
|
{
|
2015-08-23 18:51:27 -04:00
|
|
|
qDebug("AMDemod::feed: %u/%u tail samples written", res, m_audioBufferFill);
|
|
|
|
}
|
2015-08-17 02:29:34 -04:00
|
|
|
|
2015-05-11 20:53:35 -04:00
|
|
|
m_audioBufferFill = 0;
|
|
|
|
}
|
|
|
|
|
2015-08-24 17:23:45 -04:00
|
|
|
m_settingsMutex.unlock();
|
2015-05-11 20:53:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void AMDemod::start()
|
|
|
|
{
|
2015-08-23 18:51:27 -04:00
|
|
|
qDebug() << "AMDemod::start: m_inputSampleRate: " << m_config.m_inputSampleRate
|
|
|
|
<< " m_inputFrequencyOffset: " << m_config.m_inputFrequencyOffset;
|
|
|
|
|
2015-12-26 12:11:38 -05:00
|
|
|
m_squelchCount = 0;
|
2015-08-23 18:51:27 -04:00
|
|
|
m_audioFifo.clear();
|
2015-05-11 20:53:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void AMDemod::stop()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2015-08-17 02:29:34 -04:00
|
|
|
bool AMDemod::handleMessage(const Message& cmd)
|
2015-05-11 20:53:35 -04:00
|
|
|
{
|
2015-08-17 02:29:34 -04:00
|
|
|
qDebug() << "AMDemod::handleMessage";
|
|
|
|
|
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-08-17 02:29:34 -04:00
|
|
|
|
|
|
|
m_config.m_inputSampleRate = notif.getSampleRate();
|
|
|
|
m_config.m_inputFrequencyOffset = notif.getFrequencyOffset();
|
2015-05-11 20:53:35 -04:00
|
|
|
|
|
|
|
apply();
|
2015-08-17 02:29:34 -04:00
|
|
|
|
2015-08-19 16:12:52 -04:00
|
|
|
qDebug() << "AMDemod::handleMessage: MsgChannelizerNotification:"
|
2015-08-17 02:29:34 -04:00
|
|
|
<< " m_inputSampleRate: " << m_config.m_inputSampleRate
|
|
|
|
<< " m_inputFrequencyOffset: " << m_config.m_inputFrequencyOffset;
|
|
|
|
|
2015-05-11 20:53:35 -04:00
|
|
|
return true;
|
2015-08-17 02:29:34 -04:00
|
|
|
}
|
|
|
|
else if (MsgConfigureAMDemod::match(cmd))
|
|
|
|
{
|
|
|
|
MsgConfigureAMDemod& cfg = (MsgConfigureAMDemod&) cmd;
|
|
|
|
|
|
|
|
m_config.m_rfBandwidth = cfg.getRFBandwidth();
|
|
|
|
m_config.m_volume = cfg.getVolume();
|
|
|
|
m_config.m_squelch = cfg.getSquelch();
|
2015-12-26 12:23:55 -05:00
|
|
|
m_config.m_audioMute = cfg.getAudioMute();
|
2017-05-12 13:21:52 -04:00
|
|
|
m_config.m_bandpassEnable = cfg.getBandpassEnable();
|
2015-08-17 02:29:34 -04:00
|
|
|
|
2015-05-11 20:53:35 -04:00
|
|
|
apply();
|
2015-08-17 02:29:34 -04:00
|
|
|
|
2015-08-23 18:51:27 -04:00
|
|
|
qDebug() << "AMDemod::handleMessage: MsgConfigureAMDemod:"
|
2015-08-17 02:29:34 -04:00
|
|
|
<< " m_rfBandwidth: " << m_config.m_rfBandwidth
|
|
|
|
<< " m_volume: " << m_config.m_volume
|
2015-12-26 12:23:55 -05:00
|
|
|
<< " m_squelch: " << m_config.m_squelch
|
2017-05-12 13:21:52 -04:00
|
|
|
<< " m_audioMute: " << m_config.m_audioMute
|
|
|
|
<< " m_bandpassEnable: " << m_config.m_bandpassEnable;
|
2015-08-17 02:29:34 -04:00
|
|
|
|
2015-05-11 20:53:35 -04:00
|
|
|
return true;
|
2015-08-17 02:29:34 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-08-23 18:58:54 -04:00
|
|
|
return false;
|
2015-05-11 20:53:35 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void AMDemod::apply()
|
|
|
|
{
|
|
|
|
|
|
|
|
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-05-11 20:53:35 -04:00
|
|
|
m_nco.setFreq(-m_config.m_inputFrequencyOffset, m_config.m_inputSampleRate);
|
|
|
|
}
|
|
|
|
|
|
|
|
if((m_config.m_inputSampleRate != m_running.m_inputSampleRate) ||
|
2016-11-30 10:42:06 -05:00
|
|
|
(m_config.m_rfBandwidth != m_running.m_rfBandwidth) ||
|
2017-05-12 13:21:52 -04:00
|
|
|
(m_config.m_audioSampleRate != m_running.m_audioSampleRate) ||
|
|
|
|
(m_config.m_bandpassEnable != m_running.m_bandpassEnable))
|
2015-08-17 02:29:34 -04:00
|
|
|
{
|
2015-08-24 17:23:45 -04:00
|
|
|
m_settingsMutex.lock();
|
2017-05-12 13:21:52 -04:00
|
|
|
m_interpolator.create(16, m_config.m_inputSampleRate, m_config.m_rfBandwidth / 2.2f);
|
2015-05-11 20:53:35 -04:00
|
|
|
m_interpolatorDistanceRemain = 0;
|
2015-06-07 17:07:19 -04:00
|
|
|
m_interpolatorDistance = (Real) m_config.m_inputSampleRate / (Real) m_config.m_audioSampleRate;
|
2017-05-12 13:21:52 -04:00
|
|
|
m_bandpass.create(301, m_config.m_audioSampleRate, 300.0, m_config.m_rfBandwidth / 2.0f);
|
2015-08-24 17:23:45 -04:00
|
|
|
m_settingsMutex.unlock();
|
2015-05-11 20:53:35 -04:00
|
|
|
}
|
|
|
|
|
2015-08-17 02:29:34 -04:00
|
|
|
if(m_config.m_squelch != m_running.m_squelch)
|
|
|
|
{
|
2015-05-11 20:53:35 -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;
|
|
|
|
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-12-26 12:23:55 -05:00
|
|
|
m_running.m_audioMute = m_config.m_audioMute;
|
2017-05-12 13:21:52 -04:00
|
|
|
m_running.m_bandpassEnable = m_config.m_bandpassEnable;
|
2015-05-11 20:53:35 -04:00
|
|
|
}
|