2019-11-23 01:39:57 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2019 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 //
|
|
|
|
// (at your option) any later version. //
|
|
|
|
// //
|
|
|
|
// 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/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef INCLUDE_NFMDEMODSINK_H
|
|
|
|
#define INCLUDE_NFMDEMODSINK_H
|
|
|
|
|
2020-12-20 05:52:10 -05:00
|
|
|
#include <QVector>
|
2019-11-23 01:39:57 -05:00
|
|
|
|
|
|
|
#include "dsp/channelsamplesink.h"
|
|
|
|
#include "dsp/phasediscri.h"
|
|
|
|
#include "dsp/nco.h"
|
|
|
|
#include "dsp/interpolator.h"
|
2020-11-05 12:55:39 -05:00
|
|
|
#include "dsp/fftfilt.h"
|
2020-10-31 16:30:45 -04:00
|
|
|
#include "dsp/firfilter.h"
|
2019-11-23 01:39:57 -05:00
|
|
|
#include "dsp/afsquelch.h"
|
|
|
|
#include "dsp/agc.h"
|
|
|
|
#include "dsp/ctcssdetector.h"
|
2021-04-18 04:45:49 -04:00
|
|
|
#include "dsp/dcscodes.h"
|
2019-11-23 01:39:57 -05:00
|
|
|
#include "util/movingaverage.h"
|
|
|
|
#include "util/doublebufferfifo.h"
|
|
|
|
#include "audio/audiofifo.h"
|
|
|
|
|
2021-04-17 12:14:15 -04:00
|
|
|
#include "dcsdetector.h"
|
2019-11-23 01:39:57 -05:00
|
|
|
#include "nfmdemodsettings.h"
|
|
|
|
|
2020-12-20 05:52:10 -05:00
|
|
|
class ChannelAPI;
|
|
|
|
|
2019-11-23 01:39:57 -05:00
|
|
|
class NFMDemodSink : public ChannelSampleSink {
|
|
|
|
public:
|
|
|
|
NFMDemodSink();
|
|
|
|
|
2020-11-05 12:55:39 -05:00
|
|
|
virtual void feed(const SampleVector::const_iterator& begin, const SampleVector::const_iterator& end);
|
2019-11-23 01:39:57 -05:00
|
|
|
|
2020-11-05 12:55:39 -05:00
|
|
|
const Real *getCtcssToneSet(int& nbTones) const {
|
|
|
|
nbTones = m_ctcssDetector.getNTones();
|
|
|
|
return m_ctcssDetector.getToneSet();
|
|
|
|
}
|
2019-11-23 01:39:57 -05:00
|
|
|
|
2020-11-05 12:55:39 -05:00
|
|
|
bool getSquelchOpen() const { return m_squelchOpen; }
|
2019-11-23 01:39:57 -05:00
|
|
|
|
|
|
|
void getMagSqLevels(double& avg, double& peak, int& nbSamples)
|
|
|
|
{
|
|
|
|
if (m_magsqCount > 0)
|
|
|
|
{
|
|
|
|
m_magsq = m_magsqSum / m_magsqCount;
|
|
|
|
m_magSqLevelStore.m_magsq = m_magsq;
|
|
|
|
m_magSqLevelStore.m_magsqPeak = m_magsqPeak;
|
|
|
|
}
|
|
|
|
|
|
|
|
avg = m_magSqLevelStore.m_magsq;
|
|
|
|
peak = m_magSqLevelStore.m_magsqPeak;
|
|
|
|
nbSamples = m_magsqCount == 0 ? 1 : m_magsqCount;
|
|
|
|
|
|
|
|
m_magsqSum = 0.0f;
|
|
|
|
m_magsqPeak = 0.0f;
|
|
|
|
m_magsqCount = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void applyChannelSettings(int channelSampleRate, int channelFrequencyOffset, bool force = false);
|
|
|
|
void applySettings(const NFMDemodSettings& settings, bool force = false);
|
|
|
|
void setMessageQueueToGUI(MessageQueue *messageQueue) { m_messageQueueToGUI = messageQueue; }
|
|
|
|
|
|
|
|
AudioFifo *getAudioFifo() { return &m_audioFifo; }
|
2022-03-18 12:08:04 -04:00
|
|
|
void setAudioFifoLabel(const QString& label) { m_audioFifo.setLabel(label); }
|
2019-11-23 01:39:57 -05:00
|
|
|
void applyAudioSampleRate(unsigned int sampleRate);
|
2020-08-01 04:09:39 -04:00
|
|
|
int getAudioSampleRate() const { return m_audioSampleRate; }
|
2020-12-20 05:52:10 -05:00
|
|
|
void setChannel(ChannelAPI *channel) { m_channel = channel; }
|
2019-11-23 01:39:57 -05:00
|
|
|
|
|
|
|
private:
|
|
|
|
struct MagSqLevelsStore
|
|
|
|
{
|
|
|
|
MagSqLevelsStore() :
|
|
|
|
m_magsq(1e-12),
|
|
|
|
m_magsqPeak(1e-12)
|
|
|
|
{}
|
|
|
|
double m_magsq;
|
|
|
|
double m_magsqPeak;
|
|
|
|
};
|
|
|
|
|
2020-11-05 12:55:39 -05:00
|
|
|
enum RateState {
|
|
|
|
RSInitialFill,
|
|
|
|
RSRunning
|
|
|
|
};
|
2019-11-23 01:39:57 -05:00
|
|
|
|
|
|
|
int m_channelSampleRate;
|
|
|
|
int m_channelFrequencyOffset;
|
2020-11-05 12:55:39 -05:00
|
|
|
NFMDemodSettings m_settings;
|
2020-12-20 05:52:10 -05:00
|
|
|
ChannelAPI *m_channel;
|
2019-11-23 01:39:57 -05:00
|
|
|
|
2020-08-01 04:09:39 -04:00
|
|
|
int m_audioSampleRate;
|
2019-11-23 01:39:57 -05:00
|
|
|
AudioVector m_audioBuffer;
|
|
|
|
uint m_audioBufferFill;
|
|
|
|
AudioFifo m_audioFifo;
|
2020-12-20 05:52:10 -05:00
|
|
|
QVector<qint16> m_demodBuffer;
|
|
|
|
int m_demodBufferFill;
|
2019-11-23 01:39:57 -05:00
|
|
|
|
2020-11-05 12:55:39 -05:00
|
|
|
NCO m_nco;
|
|
|
|
Interpolator m_interpolator;
|
|
|
|
fftfilt m_rfFilter;
|
|
|
|
Real m_interpolatorDistance;
|
|
|
|
Real m_interpolatorDistanceRemain;
|
|
|
|
Lowpass<Real> m_ctcssLowpass;
|
|
|
|
Bandpass<Real> m_bandpass;
|
2019-11-23 01:39:57 -05:00
|
|
|
Lowpass<Real> m_lowpass;
|
2020-11-05 12:55:39 -05:00
|
|
|
CTCSSDetector m_ctcssDetector;
|
|
|
|
int m_ctcssIndex; // 0 for nothing detected
|
|
|
|
int m_ctcssIndexSelected;
|
2021-04-17 12:14:15 -04:00
|
|
|
DCSDetector m_dcsDetector;
|
|
|
|
unsigned int m_dcsCode;
|
|
|
|
unsigned int m_dcsCodeSeleted;
|
2020-11-05 12:55:39 -05:00
|
|
|
int m_sampleCount;
|
|
|
|
int m_squelchCount;
|
|
|
|
int m_squelchGate;
|
|
|
|
int m_filterTaps;
|
|
|
|
|
|
|
|
Real m_squelchLevel;
|
|
|
|
bool m_squelchOpen;
|
|
|
|
bool m_afSquelchOpen;
|
|
|
|
double m_magsq; //!< displayed averaged value
|
|
|
|
double m_magsqSum;
|
|
|
|
double m_magsqPeak;
|
2019-11-23 01:39:57 -05:00
|
|
|
int m_magsqCount;
|
|
|
|
MagSqLevelsStore m_magSqLevelStore;
|
|
|
|
|
2020-11-05 12:55:39 -05:00
|
|
|
MovingAverageUtil<Real, double, 32> m_movingAverage;
|
|
|
|
AFSquelch m_afSquelch;
|
|
|
|
DoubleBufferFIFO<Real> m_squelchDelayLine;
|
2019-11-23 01:39:57 -05:00
|
|
|
|
|
|
|
PhaseDiscriminators m_phaseDiscri;
|
|
|
|
MessageQueue *m_messageQueueToGUI;
|
|
|
|
|
|
|
|
static const double afSqTones[];
|
|
|
|
static const double afSqTones_lowrate[];
|
2020-11-05 12:55:39 -05:00
|
|
|
static const unsigned FFT_FILTER_LENGTH;
|
|
|
|
static const unsigned CTCSS_DETECTOR_RATE;
|
2019-11-23 01:39:57 -05:00
|
|
|
|
2021-04-18 04:45:49 -04:00
|
|
|
void setSelectedCtcssIndex(int selectedCtcssIndex) {
|
|
|
|
m_ctcssIndexSelected = selectedCtcssIndex;
|
|
|
|
}
|
|
|
|
|
|
|
|
void setSelectedDcsCode(unsigned int dcsCode, bool dcsPositive) {
|
|
|
|
m_dcsCodeSeleted = dcsPositive ? dcsCode : DCSCodes::m_signFlip[dcsCode];
|
|
|
|
}
|
|
|
|
|
2019-11-23 01:39:57 -05:00
|
|
|
void processOneSample(Complex &ci);
|
|
|
|
MessageQueue *getMessageQueueToGUI() { return m_messageQueueToGUI; }
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // INCLUDE_NFMDEMODSINK_H
|