2016-04-07 07:05:53 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
2016-04-21 21:53:16 -04:00
|
|
|
// Copyright (C) 2016 F4EXB //
|
2016-04-08 12:14:50 -04:00
|
|
|
// written by Edouard Griffiths //
|
2016-04-07 07:05:53 -04:00
|
|
|
// //
|
|
|
|
// 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/demoddsd/dsddemod.h"
|
|
|
|
|
2016-04-07 07:05:53 -04:00
|
|
|
#include <QTime>
|
|
|
|
#include <QDebug>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <complex.h>
|
2016-10-02 15:52:39 -04:00
|
|
|
#include <dsp/downchannelizer.h>
|
2016-04-07 07:05:53 -04:00
|
|
|
#include "audio/audiooutput.h"
|
|
|
|
#include "dsp/pidcontroller.h"
|
|
|
|
#include "dsp/dspengine.h"
|
2016-10-02 07:18:07 -04:00
|
|
|
#include "../../channelrx/demoddsd/dsddemodgui.h"
|
2016-04-07 07:05:53 -04:00
|
|
|
|
|
|
|
MESSAGE_CLASS_DEFINITION(DSDDemod::MsgConfigureDSDDemod, Message)
|
2016-09-28 11:58:29 -04:00
|
|
|
MESSAGE_CLASS_DEFINITION(DSDDemod::MsgConfigureMyPosition, Message)
|
2016-04-07 07:05:53 -04:00
|
|
|
|
2016-10-02 16:29:04 -04:00
|
|
|
DSDDemod::DSDDemod(BasebandSampleSink* sampleSink) :
|
2016-04-07 07:05:53 -04:00
|
|
|
m_sampleCount(0),
|
|
|
|
m_squelchCount(0),
|
|
|
|
m_squelchOpen(false),
|
2016-09-03 19:06:10 -04:00
|
|
|
m_audioFifo1(4, 48000),
|
|
|
|
m_audioFifo2(4, 48000),
|
2016-04-07 07:05:53 -04:00
|
|
|
m_fmExcursion(24),
|
|
|
|
m_settingsMutex(QMutex::Recursive),
|
|
|
|
m_scope(sampleSink),
|
2016-04-08 12:14:50 -04:00
|
|
|
m_scopeEnabled(true),
|
|
|
|
m_dsdDecoder()
|
2016-04-07 07:05:53 -04:00
|
|
|
{
|
|
|
|
setObjectName("DSDDemod");
|
|
|
|
|
|
|
|
m_config.m_inputSampleRate = 96000;
|
|
|
|
m_config.m_inputFrequencyOffset = 0;
|
|
|
|
m_config.m_rfBandwidth = 100;
|
|
|
|
m_config.m_demodGain = 100;
|
|
|
|
m_config.m_fmDeviation = 100;
|
|
|
|
m_config.m_squelchGate = 5; // 10s of ms at 48000 Hz sample rate. Corresponds to 2400 for AGC attack
|
|
|
|
m_config.m_squelch = -30.0;
|
|
|
|
m_config.m_volume = 1.0;
|
2016-08-06 05:03:05 -04:00
|
|
|
m_config.m_baudRate = 4800;
|
2016-04-07 07:05:53 -04:00
|
|
|
m_config.m_audioMute = false;
|
|
|
|
m_config.m_audioSampleRate = DSPEngine::instance()->getAudioSampleRate();
|
2016-08-18 13:38:39 -04:00
|
|
|
m_config.m_enableCosineFiltering = false;
|
2016-04-07 07:05:53 -04:00
|
|
|
|
|
|
|
apply();
|
|
|
|
|
|
|
|
m_audioBuffer.resize(1<<14);
|
|
|
|
m_audioBufferFill = 0;
|
|
|
|
|
2016-04-11 21:32:42 -04:00
|
|
|
m_sampleBuffer = new qint16[1<<17]; // 128 kS
|
|
|
|
m_sampleBufferIndex = 0;
|
|
|
|
|
2016-12-14 12:46:31 -05:00
|
|
|
m_movingAverage.resize(16, 0);
|
2016-12-06 13:06:38 -05:00
|
|
|
m_magsq = 0.0f;
|
|
|
|
m_magsqSum = 0.0f;
|
|
|
|
m_magsqPeak = 0.0f;
|
|
|
|
m_magsqCount = 0;
|
2016-04-07 07:05:53 -04:00
|
|
|
|
2016-09-03 19:06:10 -04:00
|
|
|
DSPEngine::instance()->addAudioSink(&m_audioFifo1);
|
|
|
|
DSPEngine::instance()->addAudioSink(&m_audioFifo2);
|
2016-04-07 07:05:53 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
DSDDemod::~DSDDemod()
|
|
|
|
{
|
2016-04-11 21:32:42 -04:00
|
|
|
delete[] m_sampleBuffer;
|
2016-09-03 19:06:10 -04:00
|
|
|
DSPEngine::instance()->removeAudioSink(&m_audioFifo1);
|
|
|
|
DSPEngine::instance()->removeAudioSink(&m_audioFifo2);
|
2016-04-07 07:05:53 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void DSDDemod::configure(MessageQueue* messageQueue,
|
|
|
|
int rfBandwidth,
|
|
|
|
int demodGain,
|
|
|
|
int fmDeviation,
|
|
|
|
int volume,
|
2016-08-06 05:03:05 -04:00
|
|
|
int baudRate,
|
2016-04-07 07:05:53 -04:00
|
|
|
int squelchGate,
|
|
|
|
Real squelch,
|
2016-08-18 13:38:39 -04:00
|
|
|
bool audioMute,
|
2016-08-24 19:06:42 -04:00
|
|
|
bool enableCosineFiltering,
|
2016-08-30 19:18:32 -04:00
|
|
|
bool syncOrConstellation,
|
|
|
|
bool slot1On,
|
2016-09-06 18:16:08 -04:00
|
|
|
bool slot2On,
|
|
|
|
bool tdmaStereo)
|
2016-04-07 07:05:53 -04:00
|
|
|
{
|
|
|
|
Message* cmd = MsgConfigureDSDDemod::create(rfBandwidth,
|
|
|
|
demodGain,
|
|
|
|
fmDeviation,
|
|
|
|
volume,
|
2016-08-06 05:03:05 -04:00
|
|
|
baudRate,
|
2016-04-07 07:05:53 -04:00
|
|
|
squelchGate,
|
|
|
|
squelch,
|
2016-08-18 13:38:39 -04:00
|
|
|
audioMute,
|
2016-08-24 19:06:42 -04:00
|
|
|
enableCosineFiltering,
|
2016-08-30 19:18:32 -04:00
|
|
|
syncOrConstellation,
|
|
|
|
slot1On,
|
2016-09-06 18:16:08 -04:00
|
|
|
slot2On,
|
|
|
|
tdmaStereo);
|
2016-04-07 07:05:53 -04:00
|
|
|
messageQueue->push(cmd);
|
|
|
|
}
|
|
|
|
|
2016-09-28 11:58:29 -04:00
|
|
|
void DSDDemod::configureMyPosition(MessageQueue* messageQueue, float myLatitude, float myLongitude)
|
|
|
|
{
|
|
|
|
Message* cmd = MsgConfigureMyPosition::create(myLatitude, myLongitude);
|
|
|
|
messageQueue->push(cmd);
|
|
|
|
}
|
|
|
|
|
2016-04-07 07:05:53 -04:00
|
|
|
void DSDDemod::feed(const SampleVector::const_iterator& begin, const SampleVector::const_iterator& end, bool firstOfBurst)
|
|
|
|
{
|
|
|
|
Complex ci;
|
2016-04-23 00:27:28 -04:00
|
|
|
int samplesPerSymbol = m_dsdDecoder.getSamplesPerSymbol();
|
2016-04-07 07:05:53 -04:00
|
|
|
|
|
|
|
m_settingsMutex.lock();
|
|
|
|
m_scopeSampleBuffer.clear();
|
|
|
|
|
2016-05-09 03:24:28 -04:00
|
|
|
m_dsdDecoder.enableMbelib(!DSPEngine::instance()->hasDVSerialSupport()); // disable mbelib if DV serial support is present and activated else enable it
|
|
|
|
|
2016-04-07 07:05:53 -04:00
|
|
|
for (SampleVector::const_iterator it = begin; it != end; ++it)
|
|
|
|
{
|
|
|
|
Complex c(it->real(), it->imag());
|
|
|
|
c *= m_nco.nextIQ();
|
|
|
|
|
2016-10-09 19:53:32 -04:00
|
|
|
if (m_interpolator.decimate(&m_interpolatorDistanceRemain, c, &ci))
|
2016-04-09 13:14:19 -04:00
|
|
|
{
|
2016-04-11 21:32:42 -04:00
|
|
|
qint16 sample, delayedSample;
|
2016-04-09 13:14:19 -04:00
|
|
|
|
2016-12-06 13:06:38 -05:00
|
|
|
Real magsq = ((ci.real()*ci.real() + ci.imag()*ci.imag())) / (1<<30);
|
2016-12-14 12:46:31 -05:00
|
|
|
m_movingAverage.feed(magsq);
|
2016-12-06 13:06:38 -05:00
|
|
|
|
|
|
|
m_magsqSum += magsq;
|
|
|
|
|
|
|
|
if (magsq > m_magsqPeak)
|
|
|
|
{
|
|
|
|
m_magsqPeak = magsq;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_magsqCount++;
|
2016-04-09 13:14:19 -04:00
|
|
|
|
|
|
|
Real demod = 32768.0f * m_phaseDiscri.phaseDiscriminator(ci) * ((float) m_running.m_demodGain / 100.0f);
|
|
|
|
m_sampleCount++;
|
|
|
|
|
|
|
|
// AF processing
|
|
|
|
|
2016-12-14 12:46:31 -05:00
|
|
|
if (m_movingAverage.average() > m_squelchLevel)
|
2016-04-09 13:14:19 -04:00
|
|
|
{
|
2016-04-23 00:58:54 -04:00
|
|
|
if (m_squelchGate > 0)
|
2016-04-09 13:14:19 -04:00
|
|
|
{
|
2016-04-23 00:58:54 -04:00
|
|
|
if (m_squelchCount < m_squelchGate) {
|
|
|
|
m_squelchCount++;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_squelchOpen = m_squelchCount == m_squelchGate;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_squelchOpen = true;
|
2016-04-09 13:14:19 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_squelchCount = 0;
|
2016-04-23 00:58:54 -04:00
|
|
|
m_squelchOpen = false;
|
2016-04-09 13:14:19 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (m_squelchOpen)
|
|
|
|
{
|
|
|
|
sample = demod;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sample = 0;
|
|
|
|
}
|
|
|
|
|
2016-08-19 13:30:32 -04:00
|
|
|
m_dsdDecoder.pushSample(sample);
|
|
|
|
|
|
|
|
if (m_running.m_enableCosineFiltering) { // show actual input to FSK demod
|
|
|
|
sample = m_dsdDecoder.getFilteredSample();
|
|
|
|
}
|
|
|
|
|
2016-04-11 21:32:42 -04:00
|
|
|
if (m_sampleBufferIndex < (1<<17)) {
|
|
|
|
m_sampleBufferIndex++;
|
|
|
|
} else {
|
|
|
|
m_sampleBufferIndex = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_sampleBuffer[m_sampleBufferIndex] = sample;
|
|
|
|
|
2016-04-23 00:27:28 -04:00
|
|
|
if (m_sampleBufferIndex < samplesPerSymbol) {
|
|
|
|
delayedSample = m_sampleBuffer[(1<<17) - samplesPerSymbol + m_sampleBufferIndex]; // wrap
|
2016-04-11 21:32:42 -04:00
|
|
|
} else {
|
2016-04-23 00:27:28 -04:00
|
|
|
delayedSample = m_sampleBuffer[m_sampleBufferIndex - samplesPerSymbol];
|
2016-04-11 21:32:42 -04:00
|
|
|
}
|
|
|
|
|
2016-08-24 19:06:42 -04:00
|
|
|
if (m_running.m_syncOrConstellation)
|
|
|
|
{
|
|
|
|
Sample s(sample, m_dsdDecoder.getSymbolSyncSample());
|
|
|
|
m_scopeSampleBuffer.push_back(s);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Sample s(sample, delayedSample); // I=signal, Q=signal delayed by 20 samples (2400 baud: lowest rate)
|
|
|
|
m_scopeSampleBuffer.push_back(s);
|
|
|
|
}
|
2016-04-07 07:05:53 -04:00
|
|
|
|
2016-09-03 19:06:10 -04:00
|
|
|
if (DSPEngine::instance()->hasDVSerialSupport())
|
2016-05-09 04:13:11 -04:00
|
|
|
{
|
2016-09-03 19:06:10 -04:00
|
|
|
if ((m_running.m_slot1On) && m_dsdDecoder.mbeDVReady1())
|
|
|
|
{
|
2016-09-06 18:47:51 -04:00
|
|
|
if (!m_running.m_audioMute)
|
|
|
|
{
|
|
|
|
DSPEngine::instance()->pushMbeFrame(
|
|
|
|
m_dsdDecoder.getMbeDVFrame1(),
|
|
|
|
m_dsdDecoder.getMbeRateIndex(),
|
|
|
|
m_running.m_volume,
|
|
|
|
m_running.m_tdmaStereo ? 1 : 3, // left or both channels
|
|
|
|
&m_audioFifo1);
|
2016-09-03 19:06:10 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
m_dsdDecoder.resetMbeDV1();
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((m_running.m_slot2On) && m_dsdDecoder.mbeDVReady2())
|
|
|
|
{
|
2016-09-06 18:47:51 -04:00
|
|
|
if (!m_running.m_audioMute)
|
|
|
|
{
|
|
|
|
DSPEngine::instance()->pushMbeFrame(
|
|
|
|
m_dsdDecoder.getMbeDVFrame2(),
|
|
|
|
m_dsdDecoder.getMbeRateIndex(),
|
|
|
|
m_running.m_volume,
|
|
|
|
m_running.m_tdmaStereo ? 2 : 3, // right or both channels
|
|
|
|
&m_audioFifo2);
|
2016-09-03 19:06:10 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
m_dsdDecoder.resetMbeDV2();
|
2016-05-10 02:27:54 -04:00
|
|
|
}
|
2016-05-09 04:13:11 -04:00
|
|
|
}
|
|
|
|
|
2016-09-03 19:06:10 -04:00
|
|
|
// if (DSPEngine::instance()->hasDVSerialSupport() && m_dsdDecoder.mbeDVReady1())
|
|
|
|
// {
|
|
|
|
// if (!m_running.m_audioMute)
|
|
|
|
// {
|
|
|
|
// DSPEngine::instance()->pushMbeFrame(m_dsdDecoder.getMbeDVFrame1(), m_dsdDecoder.getMbeRateIndex(), m_running.m_volume, &m_audioFifo1);
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// m_dsdDecoder.resetMbeDV1();
|
|
|
|
// }
|
|
|
|
|
2016-04-09 13:14:19 -04:00
|
|
|
m_interpolatorDistanceRemain += m_interpolatorDistance;
|
|
|
|
}
|
2016-04-07 07:05:53 -04:00
|
|
|
}
|
|
|
|
|
2016-05-09 04:13:11 -04:00
|
|
|
if (!DSPEngine::instance()->hasDVSerialSupport())
|
2016-05-08 00:00:37 -04:00
|
|
|
{
|
2016-09-03 19:06:10 -04:00
|
|
|
if (m_running.m_slot1On)
|
2016-05-08 00:00:37 -04:00
|
|
|
{
|
2016-09-03 19:06:10 -04:00
|
|
|
int nbAudioSamples;
|
|
|
|
short *dsdAudio = m_dsdDecoder.getAudio1(nbAudioSamples);
|
2016-05-08 00:00:37 -04:00
|
|
|
|
2016-09-03 19:06:10 -04:00
|
|
|
if (nbAudioSamples > 0)
|
|
|
|
{
|
|
|
|
if (!m_running.m_audioMute) {
|
|
|
|
uint res = m_audioFifo1.write((const quint8*) dsdAudio, nbAudioSamples, 10);
|
|
|
|
}
|
|
|
|
|
|
|
|
m_dsdDecoder.resetAudio1();
|
|
|
|
}
|
2016-05-08 00:00:37 -04:00
|
|
|
}
|
2016-09-03 19:06:10 -04:00
|
|
|
|
|
|
|
if (m_running.m_slot2On)
|
|
|
|
{
|
|
|
|
int nbAudioSamples;
|
|
|
|
short *dsdAudio = m_dsdDecoder.getAudio2(nbAudioSamples);
|
|
|
|
|
|
|
|
if (nbAudioSamples > 0)
|
|
|
|
{
|
|
|
|
if (!m_running.m_audioMute) {
|
|
|
|
uint res = m_audioFifo2.write((const quint8*) dsdAudio, nbAudioSamples, 10);
|
|
|
|
}
|
|
|
|
|
|
|
|
m_dsdDecoder.resetAudio2();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// int nbAudioSamples;
|
|
|
|
// short *dsdAudio = m_dsdDecoder.getAudio1(nbAudioSamples);
|
|
|
|
//
|
|
|
|
// if (nbAudioSamples > 0)
|
|
|
|
// {
|
|
|
|
// if (!m_running.m_audioMute) {
|
|
|
|
// uint res = m_audioFifo1.write((const quint8*) dsdAudio, nbAudioSamples, 10);
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// m_dsdDecoder.resetAudio1();
|
|
|
|
// }
|
2016-04-21 21:53:16 -04:00
|
|
|
}
|
2016-04-11 21:32:42 -04:00
|
|
|
|
2016-05-08 00:00:37 -04:00
|
|
|
|
2016-04-09 13:14:19 -04:00
|
|
|
if ((m_scope != 0) && (m_scopeEnabled))
|
2016-04-07 07:05:53 -04:00
|
|
|
{
|
|
|
|
m_scope->feed(m_scopeSampleBuffer.begin(), m_scopeSampleBuffer.end(), true); // true = real samples for what it's worth
|
|
|
|
}
|
|
|
|
|
|
|
|
m_settingsMutex.unlock();
|
|
|
|
}
|
|
|
|
|
|
|
|
void DSDDemod::start()
|
|
|
|
{
|
2016-09-03 19:06:10 -04:00
|
|
|
m_audioFifo1.clear();
|
|
|
|
m_audioFifo2.clear();
|
2016-04-07 07:05:53 -04:00
|
|
|
m_phaseDiscri.reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
void DSDDemod::stop()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool DSDDemod::handleMessage(const Message& cmd)
|
|
|
|
{
|
|
|
|
qDebug() << "DSDDemod::handleMessage";
|
|
|
|
|
2016-10-02 15:52:39 -04:00
|
|
|
if (DownChannelizer::MsgChannelizerNotification::match(cmd))
|
2016-04-07 07:05:53 -04:00
|
|
|
{
|
2016-10-02 15:52:39 -04:00
|
|
|
DownChannelizer::MsgChannelizerNotification& notif = (DownChannelizer::MsgChannelizerNotification&) cmd;
|
2016-04-07 07:05:53 -04:00
|
|
|
|
|
|
|
m_config.m_inputSampleRate = notif.getSampleRate();
|
|
|
|
m_config.m_inputFrequencyOffset = notif.getFrequencyOffset();
|
|
|
|
|
|
|
|
apply();
|
|
|
|
|
|
|
|
qDebug() << "DSDDemod::handleMessage: MsgChannelizerNotification: m_inputSampleRate: " << m_config.m_inputSampleRate
|
|
|
|
<< " m_inputFrequencyOffset: " << m_config.m_inputFrequencyOffset;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if (MsgConfigureDSDDemod::match(cmd))
|
|
|
|
{
|
|
|
|
MsgConfigureDSDDemod& cfg = (MsgConfigureDSDDemod&) cmd;
|
|
|
|
|
|
|
|
m_config.m_rfBandwidth = cfg.getRFBandwidth();
|
|
|
|
m_config.m_demodGain = cfg.getDemodGain();
|
|
|
|
m_config.m_fmDeviation = cfg.getFMDeviation();
|
|
|
|
m_config.m_volume = cfg.getVolume();
|
2016-08-06 05:03:05 -04:00
|
|
|
m_config.m_baudRate = cfg.getBaudRate();
|
2016-04-07 07:05:53 -04:00
|
|
|
m_config.m_squelchGate = cfg.getSquelchGate();
|
|
|
|
m_config.m_squelch = cfg.getSquelch();
|
|
|
|
m_config.m_audioMute = cfg.getAudioMute();
|
2016-08-18 13:38:39 -04:00
|
|
|
m_config.m_enableCosineFiltering = cfg.getEnableCosineFiltering();
|
2016-08-24 19:06:42 -04:00
|
|
|
m_config.m_syncOrConstellation = cfg.getSyncOrConstellation();
|
2016-08-30 19:18:32 -04:00
|
|
|
m_config.m_slot1On = cfg.getSlot1On();
|
|
|
|
m_config.m_slot2On = cfg.getSlot2On();
|
2016-09-06 18:16:08 -04:00
|
|
|
m_config.m_tdmaStereo = cfg.getTDMAStereo();
|
2016-04-07 07:05:53 -04:00
|
|
|
|
|
|
|
apply();
|
|
|
|
|
|
|
|
qDebug() << "DSDDemod::handleMessage: MsgConfigureDSDDemod: m_rfBandwidth: " << m_config.m_rfBandwidth * 100
|
|
|
|
<< " m_demodGain: " << m_config.m_demodGain / 100.0
|
|
|
|
<< " m_fmDeviation: " << m_config.m_fmDeviation * 100
|
|
|
|
<< " m_volume: " << m_config.m_volume / 10.0
|
2016-08-06 05:03:05 -04:00
|
|
|
<< " m_baudRate: " << m_config.m_baudRate
|
2016-04-07 07:05:53 -04:00
|
|
|
<< " m_squelchGate" << m_config.m_squelchGate
|
|
|
|
<< " m_squelch: " << m_config.m_squelch
|
2016-08-18 13:38:39 -04:00
|
|
|
<< " m_audioMute: " << m_config.m_audioMute
|
2016-08-24 19:06:42 -04:00
|
|
|
<< " m_enableCosineFiltering: " << m_config.m_enableCosineFiltering
|
2016-08-30 19:18:32 -04:00
|
|
|
<< " m_syncOrConstellation: " << m_config.m_syncOrConstellation
|
|
|
|
<< " m_slot1On: " << m_config.m_slot1On
|
2016-09-06 18:16:08 -04:00
|
|
|
<< " m_slot2On: " << m_config.m_slot2On
|
|
|
|
<< " m_tdmaStereo: " << m_config.m_tdmaStereo;
|
2016-04-07 07:05:53 -04:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2016-09-28 11:58:29 -04:00
|
|
|
else if (MsgConfigureMyPosition::match(cmd))
|
|
|
|
{
|
|
|
|
MsgConfigureMyPosition& cfg = (MsgConfigureMyPosition&) cmd;
|
|
|
|
m_dsdDecoder.setMyPoint(cfg.getMyLatitude(), cfg.getMyLongitude());
|
|
|
|
return true;
|
|
|
|
}
|
2016-04-07 07:05:53 -04:00
|
|
|
else
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void DSDDemod::apply()
|
|
|
|
{
|
|
|
|
if ((m_config.m_inputFrequencyOffset != m_running.m_inputFrequencyOffset) ||
|
|
|
|
(m_config.m_inputSampleRate != m_running.m_inputSampleRate))
|
|
|
|
{
|
|
|
|
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_settingsMutex.lock();
|
|
|
|
m_interpolator.create(16, m_config.m_inputSampleRate, (m_config.m_rfBandwidth * 100) / 2.2);
|
|
|
|
m_interpolatorDistanceRemain = 0;
|
|
|
|
m_interpolatorDistance = (Real) m_config.m_inputSampleRate / (Real) m_config.m_audioSampleRate;
|
|
|
|
m_phaseDiscri.setFMScaling((float) m_config.m_rfBandwidth / (float) m_config.m_fmDeviation);
|
|
|
|
m_settingsMutex.unlock();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_config.m_fmDeviation != m_running.m_fmDeviation)
|
|
|
|
{
|
|
|
|
m_phaseDiscri.setFMScaling((float) m_config.m_rfBandwidth / (float) m_config.m_fmDeviation);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_config.m_squelchGate != m_running.m_squelchGate)
|
|
|
|
{
|
2016-04-08 22:02:18 -04:00
|
|
|
m_squelchGate = 480 * m_config.m_squelchGate; // gate is given in 10s of ms at 48000 Hz audio sample rate
|
2016-04-23 04:16:15 -04:00
|
|
|
m_squelchCount = 0; // reset squelch open counter
|
2016-04-07 07:05:53 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (m_config.m_squelch != m_running.m_squelch)
|
|
|
|
{
|
|
|
|
// input is a value in tenths of dB
|
2016-04-08 22:02:18 -04:00
|
|
|
m_squelchLevel = std::pow(10.0, m_config.m_squelch / 100.0);
|
2016-04-07 07:05:53 -04:00
|
|
|
//m_squelchLevel *= m_squelchLevel;
|
|
|
|
}
|
|
|
|
|
2016-04-21 21:53:16 -04:00
|
|
|
if (m_config.m_volume != m_running.m_volume)
|
|
|
|
{
|
|
|
|
m_dsdDecoder.setAudioGain(m_config.m_volume / 10.0f);
|
|
|
|
}
|
|
|
|
|
2016-08-06 05:03:05 -04:00
|
|
|
if (m_config.m_baudRate != m_running.m_baudRate)
|
|
|
|
{
|
|
|
|
m_dsdDecoder.setBaudRate(m_config.m_baudRate);
|
|
|
|
}
|
|
|
|
|
2016-08-18 13:38:39 -04:00
|
|
|
if (m_config.m_enableCosineFiltering != m_running.m_enableCosineFiltering)
|
|
|
|
{
|
|
|
|
m_dsdDecoder.enableCosineFiltering(m_config.m_enableCosineFiltering);
|
|
|
|
}
|
|
|
|
|
2016-09-06 18:16:08 -04:00
|
|
|
if (m_config.m_tdmaStereo != m_running.m_tdmaStereo)
|
|
|
|
{
|
|
|
|
m_dsdDecoder.setTDMAStereo(m_config.m_tdmaStereo);
|
|
|
|
}
|
|
|
|
|
2016-08-06 05:03:05 -04:00
|
|
|
m_running.m_inputSampleRate = m_config.m_inputSampleRate;
|
2016-04-07 07:05:53 -04:00
|
|
|
m_running.m_inputFrequencyOffset = m_config.m_inputFrequencyOffset;
|
|
|
|
m_running.m_rfBandwidth = m_config.m_rfBandwidth;
|
|
|
|
m_running.m_demodGain = m_config.m_demodGain;
|
|
|
|
m_running.m_fmDeviation = m_config.m_fmDeviation;
|
|
|
|
m_running.m_squelchGate = m_config.m_squelchGate;
|
|
|
|
m_running.m_squelch = m_config.m_squelch;
|
|
|
|
m_running.m_volume = m_config.m_volume;
|
2016-08-06 05:03:05 -04:00
|
|
|
m_running.m_baudRate = m_config.m_baudRate;
|
2016-04-07 07:05:53 -04:00
|
|
|
m_running.m_audioSampleRate = m_config.m_audioSampleRate;
|
|
|
|
m_running.m_audioMute = m_config.m_audioMute;
|
2016-08-18 13:38:39 -04:00
|
|
|
m_running.m_enableCosineFiltering = m_config.m_enableCosineFiltering;
|
2016-08-24 19:06:42 -04:00
|
|
|
m_running.m_syncOrConstellation = m_config.m_syncOrConstellation;
|
2016-08-30 19:18:32 -04:00
|
|
|
m_running.m_slot1On = m_config.m_slot1On;
|
|
|
|
m_running.m_slot2On = m_config.m_slot2On;
|
2016-09-06 18:16:08 -04:00
|
|
|
m_running.m_tdmaStereo = m_config.m_tdmaStereo;
|
2016-04-07 07:05:53 -04:00
|
|
|
}
|