sdrangel/plugins/channelrx/demodam/amdemod.cpp

216 lines
6.7 KiB
C++
Raw Normal View History

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/>. //
///////////////////////////////////////////////////////////////////////////////////
#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>
#include <dsp/downchannelizer.h>
2015-05-11 20:53:35 -04:00
#include "audio/audiooutput.h"
#include "dsp/dspengine.h"
2015-05-11 20:53:35 -04:00
#include "dsp/pidcontroller.h"
MESSAGE_CLASS_DEFINITION(AMDemod::MsgConfigureAMDemod, Message)
AMDemod::AMDemod() :
m_squelchOpen(false),
m_magsqSum(0.0f),
m_magsqPeak(0.0f),
m_magsqCount(0),
m_movingAverage(40, 0),
m_volumeAGC(2400, 1.0),
m_audioFifo(48000),
2017-05-25 14:13:34 -04:00
m_settingsMutex(QMutex::Recursive)
2015-05-11 20:53:35 -04:00
{
setObjectName("AMDemod");
2015-05-11 20:53:35 -04:00
m_config.m_inputSampleRate = 96000;
m_config.m_inputFrequencyOffset = 0;
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;
m_config.m_audioSampleRate = DSPEngine::instance()->getAudioSampleRate();
2015-05-11 20:53:35 -04:00
apply();
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);
m_magsq = 0.0;
DSPEngine::instance()->addAudioSink(&m_audioFifo);
2015-05-11 20:53:35 -04:00
}
AMDemod::~AMDemod()
{
DSPEngine::instance()->removeAudioSink(&m_audioFifo);
2015-05-11 20:53:35 -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
{
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;
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();
if (m_interpolatorDistance < 1.0f) // interpolate
2015-05-11 20:53:35 -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)
{
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)
{
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;
}
m_settingsMutex.unlock();
2015-05-11 20:53:35 -04:00
}
void AMDemod::start()
{
qDebug() << "AMDemod::start: m_inputSampleRate: " << m_config.m_inputSampleRate
<< " m_inputFrequencyOffset: " << m_config.m_inputFrequencyOffset;
m_squelchCount = 0;
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";
if (DownChannelizer::MsgChannelizerNotification::match(cmd))
2015-08-17 02:29:34 -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
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();
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
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
<< " 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
{
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) ||
(m_config.m_rfBandwidth != m_running.m_rfBandwidth) ||
(m_config.m_audioSampleRate != m_running.m_audioSampleRate) ||
(m_config.m_bandpassEnable != m_running.m_bandpassEnable))
2015-08-17 02:29:34 -04:00
{
m_settingsMutex.lock();
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;
m_interpolatorDistance = (Real) m_config.m_inputSampleRate / (Real) m_config.m_audioSampleRate;
m_bandpass.create(301, m_config.m_audioSampleRate, 300.0, m_config.m_rfBandwidth / 2.0f);
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;
m_running.m_bandpassEnable = m_config.m_bandpassEnable;
2015-05-11 20:53:35 -04:00
}