2015-12-06 04:30:51 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
2015-12-06 13:47:55 -05:00
|
|
|
// Copyright (C) 2015 F4EXB //
|
|
|
|
// written by Edouard Griffiths //
|
2015-12-06 04:30:51 -05: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/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef INCLUDE_BFMDEMOD_H
|
|
|
|
#define INCLUDE_BFMDEMOD_H
|
|
|
|
|
|
|
|
#include <QMutex>
|
|
|
|
#include <vector>
|
|
|
|
#include "dsp/samplesink.h"
|
|
|
|
#include "dsp/nco.h"
|
|
|
|
#include "dsp/interpolator.h"
|
|
|
|
#include "dsp/lowpass.h"
|
|
|
|
#include "dsp/movingaverage.h"
|
|
|
|
#include "dsp/fftfilt.h"
|
2015-12-06 20:18:31 -05:00
|
|
|
#include "dsp/phaselock.h"
|
2015-12-07 20:00:30 -05:00
|
|
|
#include "dsp/filterrc.h"
|
2015-12-16 19:13:42 -05:00
|
|
|
#include "dsp/phasediscri.h"
|
2015-12-06 04:30:51 -05:00
|
|
|
#include "audio/audiofifo.h"
|
|
|
|
#include "util/message.h"
|
2015-12-10 08:10:48 -05:00
|
|
|
#include "rdsdemod.h"
|
2015-12-12 20:54:22 -05:00
|
|
|
#include "rdsdecoder.h"
|
2015-12-06 04:30:51 -05:00
|
|
|
|
2015-12-13 03:45:29 -05:00
|
|
|
class RDSParser;
|
|
|
|
|
2015-12-06 04:30:51 -05:00
|
|
|
class BFMDemod : public SampleSink {
|
|
|
|
public:
|
2015-12-13 03:45:29 -05:00
|
|
|
BFMDemod(SampleSink* sampleSink, RDSParser* rdsParser);
|
2015-12-06 04:30:51 -05:00
|
|
|
virtual ~BFMDemod();
|
|
|
|
|
2015-12-08 18:04:46 -05:00
|
|
|
void configure(MessageQueue* messageQueue,
|
|
|
|
Real rfBandwidth,
|
|
|
|
Real afBandwidth,
|
|
|
|
Real volume,
|
|
|
|
Real squelch,
|
|
|
|
bool audioStereo,
|
2015-12-25 18:19:41 -05:00
|
|
|
bool lsbStereo,
|
2015-12-08 22:13:13 -05:00
|
|
|
bool showPilot,
|
|
|
|
bool rdsActive);
|
2015-12-06 04:30:51 -05:00
|
|
|
|
2015-12-06 13:47:55 -05:00
|
|
|
int getSampleRate() const { return m_config.m_inputSampleRate; }
|
2015-12-06 04:30:51 -05:00
|
|
|
virtual void feed(const SampleVector::const_iterator& begin, const SampleVector::const_iterator& end, bool po);
|
|
|
|
virtual void start();
|
|
|
|
virtual void stop();
|
|
|
|
virtual bool handleMessage(const Message& cmd);
|
|
|
|
|
|
|
|
Real getMagSq() const { return m_movingAverage.average(); }
|
2015-12-13 21:01:44 -05:00
|
|
|
|
2015-12-06 20:18:31 -05:00
|
|
|
bool getPilotLock() const { return m_pilotPLL.locked(); }
|
|
|
|
Real getPilotLevel() const { return m_pilotPLL.get_pilot_level(); }
|
2015-12-06 04:30:51 -05:00
|
|
|
|
2015-12-13 21:01:44 -05:00
|
|
|
Real getDecoderQua() const { return m_rdsDecoder.m_qua; }
|
2015-12-14 20:55:12 -05:00
|
|
|
bool getDecoderSynced() const { return m_rdsDecoder.synced(); }
|
2015-12-13 21:01:44 -05:00
|
|
|
Real getDemodAcc() const { return m_rdsDemod.m_report.acc; }
|
|
|
|
Real getDemodQua() const { return m_rdsDemod.m_report.qua; }
|
|
|
|
Real getDemodFclk() const { return m_rdsDemod.m_report.fclk; }
|
|
|
|
|
2015-12-06 04:30:51 -05:00
|
|
|
private:
|
|
|
|
class MsgConfigureBFMDemod : public Message {
|
|
|
|
MESSAGE_CLASS_DECLARATION
|
|
|
|
|
|
|
|
public:
|
|
|
|
Real getRFBandwidth() const { return m_rfBandwidth; }
|
|
|
|
Real getAFBandwidth() const { return m_afBandwidth; }
|
|
|
|
Real getVolume() const { return m_volume; }
|
|
|
|
Real getSquelch() const { return m_squelch; }
|
2015-12-07 02:55:22 -05:00
|
|
|
bool getAudioStereo() const { return m_audioStereo; }
|
2015-12-25 18:19:41 -05:00
|
|
|
bool getLsbStereo() const { return m_lsbStereo; }
|
2015-12-08 18:04:46 -05:00
|
|
|
bool getShowPilot() const { return m_showPilot; }
|
2015-12-08 22:13:13 -05:00
|
|
|
bool getRDSActive() const { return m_rdsActive; }
|
2015-12-08 18:04:46 -05:00
|
|
|
|
|
|
|
static MsgConfigureBFMDemod* create(Real rfBandwidth,
|
|
|
|
Real afBandwidth,
|
|
|
|
Real volume,
|
|
|
|
Real squelch,
|
|
|
|
bool audioStereo,
|
2015-12-25 18:19:41 -05:00
|
|
|
bool lsbStereo,
|
2015-12-08 22:13:13 -05:00
|
|
|
bool showPilot,
|
|
|
|
bool rdsActive)
|
2015-12-06 04:30:51 -05:00
|
|
|
{
|
2015-12-08 22:13:13 -05:00
|
|
|
return new MsgConfigureBFMDemod(rfBandwidth,
|
|
|
|
afBandwidth,
|
|
|
|
volume,
|
|
|
|
squelch,
|
|
|
|
audioStereo,
|
2015-12-25 18:19:41 -05:00
|
|
|
lsbStereo,
|
2015-12-08 22:13:13 -05:00
|
|
|
showPilot,
|
|
|
|
rdsActive);
|
2015-12-06 04:30:51 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
Real m_rfBandwidth;
|
|
|
|
Real m_afBandwidth;
|
|
|
|
Real m_volume;
|
|
|
|
Real m_squelch;
|
2015-12-07 02:55:22 -05:00
|
|
|
bool m_audioStereo;
|
2015-12-25 18:19:41 -05:00
|
|
|
bool m_lsbStereo;
|
2015-12-08 18:04:46 -05:00
|
|
|
bool m_showPilot;
|
2015-12-08 22:13:13 -05:00
|
|
|
bool m_rdsActive;
|
2015-12-08 18:04:46 -05:00
|
|
|
|
|
|
|
MsgConfigureBFMDemod(Real rfBandwidth,
|
|
|
|
Real afBandwidth,
|
|
|
|
Real volume,
|
|
|
|
Real squelch,
|
|
|
|
bool audioStereo,
|
2015-12-25 18:19:41 -05:00
|
|
|
bool lsbStereo,
|
2015-12-08 22:13:13 -05:00
|
|
|
bool showPilot,
|
|
|
|
bool rdsActive) :
|
2015-12-06 04:30:51 -05:00
|
|
|
Message(),
|
|
|
|
m_rfBandwidth(rfBandwidth),
|
|
|
|
m_afBandwidth(afBandwidth),
|
|
|
|
m_volume(volume),
|
2015-12-07 02:55:22 -05:00
|
|
|
m_squelch(squelch),
|
2015-12-08 18:04:46 -05:00
|
|
|
m_audioStereo(audioStereo),
|
2015-12-25 18:19:41 -05:00
|
|
|
m_lsbStereo(lsbStereo),
|
2015-12-08 22:13:13 -05:00
|
|
|
m_showPilot(showPilot),
|
|
|
|
m_rdsActive(rdsActive)
|
2015-12-06 04:30:51 -05:00
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
struct AudioSample {
|
|
|
|
qint16 l;
|
|
|
|
qint16 r;
|
|
|
|
};
|
|
|
|
typedef std::vector<AudioSample> AudioVector;
|
|
|
|
|
|
|
|
enum RateState {
|
|
|
|
RSInitialFill,
|
|
|
|
RSRunning
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Config {
|
|
|
|
int m_inputSampleRate;
|
|
|
|
qint64 m_inputFrequencyOffset;
|
|
|
|
Real m_rfBandwidth;
|
|
|
|
Real m_afBandwidth;
|
|
|
|
Real m_squelch;
|
|
|
|
Real m_volume;
|
|
|
|
quint32 m_audioSampleRate;
|
2015-12-07 02:55:22 -05:00
|
|
|
bool m_audioStereo;
|
2015-12-25 18:19:41 -05:00
|
|
|
bool m_lsbStereo;
|
2015-12-08 18:04:46 -05:00
|
|
|
bool m_showPilot;
|
2015-12-08 22:13:13 -05:00
|
|
|
bool m_rdsActive;
|
2015-12-06 04:30:51 -05:00
|
|
|
|
|
|
|
Config() :
|
|
|
|
m_inputSampleRate(-1),
|
|
|
|
m_inputFrequencyOffset(0),
|
|
|
|
m_rfBandwidth(-1),
|
|
|
|
m_afBandwidth(-1),
|
|
|
|
m_squelch(0),
|
|
|
|
m_volume(0),
|
2015-12-07 02:55:22 -05:00
|
|
|
m_audioSampleRate(0),
|
2015-12-08 18:04:46 -05:00
|
|
|
m_audioStereo(false),
|
2015-12-25 18:19:41 -05:00
|
|
|
m_lsbStereo(false),
|
2015-12-08 22:13:13 -05:00
|
|
|
m_showPilot(false),
|
|
|
|
m_rdsActive(false)
|
2015-12-06 04:30:51 -05:00
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
Config m_config;
|
|
|
|
Config m_running;
|
|
|
|
|
|
|
|
NCO m_nco;
|
2015-12-06 13:47:55 -05:00
|
|
|
Interpolator m_interpolator; //!< Interpolator between fixed demod bandwidth and audio bandwidth (rational)
|
2015-12-06 04:30:51 -05:00
|
|
|
Real m_interpolatorDistance;
|
|
|
|
Real m_interpolatorDistanceRemain;
|
2015-12-12 09:14:26 -05:00
|
|
|
|
2015-12-06 22:16:05 -05:00
|
|
|
Interpolator m_interpolatorStereo; //!< Twin Interpolator for stereo subcarrier
|
|
|
|
Real m_interpolatorStereoDistance;
|
|
|
|
Real m_interpolatorStereoDistanceRemain;
|
2015-12-12 09:14:26 -05:00
|
|
|
|
|
|
|
Interpolator m_interpolatorRDS; //!< Twin Interpolator for stereo subcarrier
|
|
|
|
Real m_interpolatorRDSDistance;
|
|
|
|
Real m_interpolatorRDSDistanceRemain;
|
|
|
|
|
2015-12-06 04:30:51 -05:00
|
|
|
Lowpass<Real> m_lowpass;
|
|
|
|
fftfilt* m_rfFilter;
|
2015-12-25 18:19:41 -05:00
|
|
|
static const int filtFftLen = 1024;
|
2015-12-06 04:30:51 -05:00
|
|
|
|
|
|
|
Real m_squelchLevel;
|
|
|
|
int m_squelchState;
|
|
|
|
|
2015-12-11 20:17:41 -05:00
|
|
|
Real m_m1Arg; //!> x^-1 real sample
|
|
|
|
|
2015-12-06 04:30:51 -05:00
|
|
|
MovingAverage<Real> m_movingAverage;
|
|
|
|
|
|
|
|
AudioVector m_audioBuffer;
|
|
|
|
uint m_audioBufferFill;
|
|
|
|
|
|
|
|
SampleSink* m_sampleSink;
|
|
|
|
AudioFifo m_audioFifo;
|
|
|
|
SampleVector m_sampleBuffer;
|
|
|
|
QMutex m_settingsMutex;
|
|
|
|
|
2015-12-08 22:22:12 -05:00
|
|
|
RDSPhaseLock m_pilotPLL;
|
2015-12-25 18:19:41 -05:00
|
|
|
Real m_pilotPLLSamples[4];
|
2015-12-06 20:18:31 -05:00
|
|
|
|
2015-12-11 20:30:10 -05:00
|
|
|
RDSDemod m_rdsDemod;
|
2015-12-12 20:54:22 -05:00
|
|
|
RDSDecoder m_rdsDecoder;
|
2015-12-13 03:45:29 -05:00
|
|
|
RDSParser *m_rdsParser;
|
2015-12-06 20:18:31 -05:00
|
|
|
|
2015-12-07 20:00:30 -05:00
|
|
|
LowPassFilterRC m_deemphasisFilterX;
|
|
|
|
LowPassFilterRC m_deemphasisFilterY;
|
2016-03-21 01:18:09 -04:00
|
|
|
static constexpr Real default_deemphasis = 50.0; // 50 us
|
2015-12-07 20:00:30 -05:00
|
|
|
|
2015-12-11 20:17:41 -05:00
|
|
|
Real m_fmExcursion;
|
|
|
|
static const int default_excursion = 750000; // +/- 75 kHz
|
|
|
|
|
2015-12-16 19:13:42 -05:00
|
|
|
PhaseDiscriminators m_phaseDiscri;
|
2015-12-10 08:10:48 -05:00
|
|
|
|
2015-12-06 04:30:51 -05:00
|
|
|
void apply();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // INCLUDE_BFMDEMOD_H
|