2015-12-06 09:30:51 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
2015-12-06 18:47:55 +00:00
|
|
|
// Copyright (C) 2015 F4EXB //
|
|
|
|
// written by Edouard Griffiths //
|
2015-12-06 09:30:51 +00: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
|
|
|
|
|
2016-10-02 20:29:04 +00:00
|
|
|
#include <dsp/basebandsamplesink.h>
|
2015-12-06 09:30:51 +00:00
|
|
|
#include <QMutex>
|
|
|
|
#include <vector>
|
|
|
|
#include "dsp/nco.h"
|
|
|
|
#include "dsp/interpolator.h"
|
|
|
|
#include "dsp/lowpass.h"
|
|
|
|
#include "dsp/movingaverage.h"
|
|
|
|
#include "dsp/fftfilt.h"
|
2015-12-07 01:18:31 +00:00
|
|
|
#include "dsp/phaselock.h"
|
2015-12-08 01:00:30 +00:00
|
|
|
#include "dsp/filterrc.h"
|
2015-12-17 00:13:42 +00:00
|
|
|
#include "dsp/phasediscri.h"
|
2015-12-06 09:30:51 +00:00
|
|
|
#include "audio/audiofifo.h"
|
|
|
|
#include "util/message.h"
|
2017-08-25 16:56:43 +00:00
|
|
|
#include "util/udpsink.h"
|
2016-10-02 11:18:07 +00:00
|
|
|
|
2017-10-01 09:50:16 +00:00
|
|
|
#include "rdsparser.h"
|
2017-08-25 16:56:43 +00:00
|
|
|
#include "rdsdecoder.h"
|
|
|
|
#include "rdsdemod.h"
|
2015-12-06 09:30:51 +00:00
|
|
|
|
2017-10-01 09:50:16 +00:00
|
|
|
class DeviceSourceAPI;
|
2017-10-01 10:48:31 +00:00
|
|
|
class ThreadedBasebandSampleSink;
|
|
|
|
class DownChannelizer;
|
2015-12-13 08:45:29 +00:00
|
|
|
|
2016-10-02 20:29:04 +00:00
|
|
|
class BFMDemod : public BasebandSampleSink {
|
2015-12-06 09:30:51 +00:00
|
|
|
public:
|
2017-10-01 10:48:31 +00:00
|
|
|
class MsgConfigureChannelizer : public Message {
|
|
|
|
MESSAGE_CLASS_DECLARATION
|
|
|
|
|
|
|
|
public:
|
|
|
|
int getSampleRate() const { return m_sampleRate; }
|
|
|
|
int getCenterFrequency() const { return m_centerFrequency; }
|
|
|
|
|
|
|
|
static MsgConfigureChannelizer* create(int sampleRate, int centerFrequency)
|
|
|
|
{
|
|
|
|
return new MsgConfigureChannelizer(sampleRate, centerFrequency);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
int m_sampleRate;
|
|
|
|
int m_centerFrequency;
|
|
|
|
|
|
|
|
MsgConfigureChannelizer(int sampleRate, int centerFrequency) :
|
|
|
|
Message(),
|
|
|
|
m_sampleRate(sampleRate),
|
|
|
|
m_centerFrequency(centerFrequency)
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
class MsgReportChannelSampleRateChanged : public Message {
|
|
|
|
MESSAGE_CLASS_DECLARATION
|
|
|
|
|
|
|
|
public:
|
|
|
|
int getSampleRate() const { return m_sampleRate; }
|
|
|
|
|
|
|
|
static MsgReportChannelSampleRateChanged* create(int sampleRate)
|
|
|
|
{
|
|
|
|
return new MsgReportChannelSampleRateChanged(sampleRate);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
int m_sampleRate;
|
|
|
|
|
|
|
|
MsgReportChannelSampleRateChanged(int sampleRate) :
|
|
|
|
Message(),
|
|
|
|
m_sampleRate(sampleRate)
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
BFMDemod(DeviceSourceAPI *deviceAPI);
|
2015-12-06 09:30:51 +00:00
|
|
|
virtual ~BFMDemod();
|
2017-10-01 10:48:31 +00:00
|
|
|
void setSampleSink(BasebandSampleSink* sampleSink) { m_sampleSink = sampleSink; }
|
2015-12-06 09:30:51 +00:00
|
|
|
|
2015-12-08 23:04:46 +00:00
|
|
|
void configure(MessageQueue* messageQueue,
|
|
|
|
Real rfBandwidth,
|
|
|
|
Real afBandwidth,
|
|
|
|
Real volume,
|
|
|
|
Real squelch,
|
|
|
|
bool audioStereo,
|
2015-12-25 23:19:41 +00:00
|
|
|
bool lsbStereo,
|
2015-12-09 03:13:13 +00:00
|
|
|
bool showPilot,
|
2017-08-25 16:56:43 +00:00
|
|
|
bool rdsActive,
|
|
|
|
bool copyAudioUDP,
|
|
|
|
const QString& m_udpAddress,
|
|
|
|
quint16 udpPort,
|
|
|
|
bool force = false);
|
2015-12-06 09:30:51 +00:00
|
|
|
|
2015-12-06 18:47:55 +00:00
|
|
|
int getSampleRate() const { return m_config.m_inputSampleRate; }
|
2015-12-06 09:30:51 +00: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);
|
|
|
|
|
2017-05-16 21:39:49 +00:00
|
|
|
double getMagSq() const { return m_magsq; }
|
2015-12-14 02:01:44 +00:00
|
|
|
|
2015-12-07 01:18:31 +00:00
|
|
|
bool getPilotLock() const { return m_pilotPLL.locked(); }
|
|
|
|
Real getPilotLevel() const { return m_pilotPLL.get_pilot_level(); }
|
2015-12-06 09:30:51 +00:00
|
|
|
|
2015-12-14 02:01:44 +00:00
|
|
|
Real getDecoderQua() const { return m_rdsDecoder.m_qua; }
|
2015-12-15 01:55:12 +00:00
|
|
|
bool getDecoderSynced() const { return m_rdsDecoder.synced(); }
|
2015-12-14 02:01:44 +00: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; }
|
|
|
|
|
2017-05-16 21:39:49 +00:00
|
|
|
void getMagSqLevels(double& avg, double& peak, int& nbSamples)
|
2016-12-06 18:06:38 +00:00
|
|
|
{
|
2017-05-16 15:46:44 +00:00
|
|
|
avg = m_magsqCount == 0 ? 1e-10 : m_magsqSum / m_magsqCount;
|
2016-12-06 18:06:38 +00:00
|
|
|
m_magsq = avg;
|
2017-05-16 15:46:44 +00:00
|
|
|
peak = m_magsqPeak == 0.0 ? 1e-10 : m_magsqPeak;
|
|
|
|
nbSamples = m_magsqCount == 0 ? 1 : m_magsqCount;
|
2016-12-06 18:06:38 +00:00
|
|
|
m_magsqSum = 0.0f;
|
|
|
|
m_magsqPeak = 0.0f;
|
|
|
|
m_magsqCount = 0;
|
|
|
|
}
|
|
|
|
|
2017-10-01 09:50:16 +00:00
|
|
|
RDSParser& getRDSParser() { return m_rdsParser; }
|
|
|
|
|
2017-10-01 10:48:31 +00:00
|
|
|
private slots:
|
|
|
|
void channelSampleRateChanged();
|
|
|
|
|
2015-12-06 09:30:51 +00: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 07:55:22 +00:00
|
|
|
bool getAudioStereo() const { return m_audioStereo; }
|
2015-12-25 23:19:41 +00:00
|
|
|
bool getLsbStereo() const { return m_lsbStereo; }
|
2015-12-08 23:04:46 +00:00
|
|
|
bool getShowPilot() const { return m_showPilot; }
|
2015-12-09 03:13:13 +00:00
|
|
|
bool getRDSActive() const { return m_rdsActive; }
|
2017-08-25 16:56:43 +00:00
|
|
|
bool getCopyAudioToUDP() const { return m_copyAudioToUDP; }
|
|
|
|
const QString& getUDPAddress() const { return m_udpAddress; }
|
|
|
|
quint16 getUDPPort() const { return m_udpPort; }
|
|
|
|
bool getForce() const { return m_force; }
|
2015-12-08 23:04:46 +00:00
|
|
|
|
|
|
|
static MsgConfigureBFMDemod* create(Real rfBandwidth,
|
|
|
|
Real afBandwidth,
|
|
|
|
Real volume,
|
|
|
|
Real squelch,
|
|
|
|
bool audioStereo,
|
2015-12-25 23:19:41 +00:00
|
|
|
bool lsbStereo,
|
2015-12-09 03:13:13 +00:00
|
|
|
bool showPilot,
|
2017-08-25 16:56:43 +00:00
|
|
|
bool rdsActive,
|
|
|
|
bool copyAudioToUDP,
|
|
|
|
const QString& udpAddress,
|
|
|
|
quint16 udpPort,
|
|
|
|
bool force)
|
2015-12-06 09:30:51 +00:00
|
|
|
{
|
2015-12-09 03:13:13 +00:00
|
|
|
return new MsgConfigureBFMDemod(rfBandwidth,
|
|
|
|
afBandwidth,
|
|
|
|
volume,
|
|
|
|
squelch,
|
|
|
|
audioStereo,
|
2015-12-25 23:19:41 +00:00
|
|
|
lsbStereo,
|
2015-12-09 03:13:13 +00:00
|
|
|
showPilot,
|
2017-08-25 16:56:43 +00:00
|
|
|
rdsActive,
|
|
|
|
copyAudioToUDP,
|
|
|
|
udpAddress,
|
|
|
|
udpPort,
|
|
|
|
force);
|
2015-12-06 09:30:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
Real m_rfBandwidth;
|
|
|
|
Real m_afBandwidth;
|
|
|
|
Real m_volume;
|
|
|
|
Real m_squelch;
|
2015-12-07 07:55:22 +00:00
|
|
|
bool m_audioStereo;
|
2015-12-25 23:19:41 +00:00
|
|
|
bool m_lsbStereo;
|
2015-12-08 23:04:46 +00:00
|
|
|
bool m_showPilot;
|
2015-12-09 03:13:13 +00:00
|
|
|
bool m_rdsActive;
|
2017-08-25 16:56:43 +00:00
|
|
|
bool m_copyAudioToUDP;
|
|
|
|
QString m_udpAddress;
|
|
|
|
quint16 m_udpPort;
|
|
|
|
bool m_force;
|
2015-12-08 23:04:46 +00:00
|
|
|
|
|
|
|
MsgConfigureBFMDemod(Real rfBandwidth,
|
|
|
|
Real afBandwidth,
|
|
|
|
Real volume,
|
|
|
|
Real squelch,
|
|
|
|
bool audioStereo,
|
2015-12-25 23:19:41 +00:00
|
|
|
bool lsbStereo,
|
2015-12-09 03:13:13 +00:00
|
|
|
bool showPilot,
|
2017-08-25 16:56:43 +00:00
|
|
|
bool rdsActive,
|
|
|
|
bool copyAudioToUDP,
|
|
|
|
const QString& udpAddress,
|
|
|
|
quint16 udpPort,
|
|
|
|
bool force) :
|
2015-12-06 09:30:51 +00:00
|
|
|
Message(),
|
|
|
|
m_rfBandwidth(rfBandwidth),
|
|
|
|
m_afBandwidth(afBandwidth),
|
|
|
|
m_volume(volume),
|
2015-12-07 07:55:22 +00:00
|
|
|
m_squelch(squelch),
|
2015-12-08 23:04:46 +00:00
|
|
|
m_audioStereo(audioStereo),
|
2015-12-25 23:19:41 +00:00
|
|
|
m_lsbStereo(lsbStereo),
|
2015-12-09 03:13:13 +00:00
|
|
|
m_showPilot(showPilot),
|
2017-08-25 16:56:43 +00:00
|
|
|
m_rdsActive(rdsActive),
|
|
|
|
m_copyAudioToUDP(copyAudioToUDP),
|
|
|
|
m_udpAddress(udpAddress),
|
|
|
|
m_udpPort(udpPort),
|
|
|
|
m_force(force)
|
2015-12-06 09:30:51 +00:00
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
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 07:55:22 +00:00
|
|
|
bool m_audioStereo;
|
2015-12-25 23:19:41 +00:00
|
|
|
bool m_lsbStereo;
|
2015-12-08 23:04:46 +00:00
|
|
|
bool m_showPilot;
|
2015-12-09 03:13:13 +00:00
|
|
|
bool m_rdsActive;
|
2017-08-25 16:56:43 +00:00
|
|
|
bool m_copyAudioToUDP;
|
|
|
|
QString m_udpAddress;
|
|
|
|
quint16 m_udpPort;
|
2015-12-06 09:30:51 +00:00
|
|
|
|
|
|
|
Config() :
|
|
|
|
m_inputSampleRate(-1),
|
|
|
|
m_inputFrequencyOffset(0),
|
|
|
|
m_rfBandwidth(-1),
|
|
|
|
m_afBandwidth(-1),
|
|
|
|
m_squelch(0),
|
|
|
|
m_volume(0),
|
2015-12-07 07:55:22 +00:00
|
|
|
m_audioSampleRate(0),
|
2015-12-08 23:04:46 +00:00
|
|
|
m_audioStereo(false),
|
2015-12-25 23:19:41 +00:00
|
|
|
m_lsbStereo(false),
|
2015-12-09 03:13:13 +00:00
|
|
|
m_showPilot(false),
|
2017-08-25 16:56:43 +00:00
|
|
|
m_rdsActive(false),
|
|
|
|
m_copyAudioToUDP(false),
|
|
|
|
m_udpAddress("127.0.0.1"),
|
|
|
|
m_udpPort(9999)
|
2015-12-06 09:30:51 +00:00
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
Config m_config;
|
|
|
|
Config m_running;
|
|
|
|
|
2017-10-01 09:50:16 +00:00
|
|
|
DeviceSourceAPI *m_deviceAPI;
|
2017-10-01 10:48:31 +00:00
|
|
|
ThreadedBasebandSampleSink* m_threadedChannelizer;
|
|
|
|
DownChannelizer* m_channelizer;
|
2017-10-01 09:50:16 +00:00
|
|
|
|
2015-12-06 09:30:51 +00:00
|
|
|
NCO m_nco;
|
2015-12-06 18:47:55 +00:00
|
|
|
Interpolator m_interpolator; //!< Interpolator between fixed demod bandwidth and audio bandwidth (rational)
|
2015-12-06 09:30:51 +00:00
|
|
|
Real m_interpolatorDistance;
|
|
|
|
Real m_interpolatorDistanceRemain;
|
2015-12-12 14:14:26 +00:00
|
|
|
|
2015-12-07 03:16:05 +00:00
|
|
|
Interpolator m_interpolatorStereo; //!< Twin Interpolator for stereo subcarrier
|
|
|
|
Real m_interpolatorStereoDistance;
|
|
|
|
Real m_interpolatorStereoDistanceRemain;
|
2015-12-12 14:14:26 +00:00
|
|
|
|
|
|
|
Interpolator m_interpolatorRDS; //!< Twin Interpolator for stereo subcarrier
|
|
|
|
Real m_interpolatorRDSDistance;
|
|
|
|
Real m_interpolatorRDSDistanceRemain;
|
|
|
|
|
2015-12-06 09:30:51 +00:00
|
|
|
Lowpass<Real> m_lowpass;
|
|
|
|
fftfilt* m_rfFilter;
|
2015-12-25 23:19:41 +00:00
|
|
|
static const int filtFftLen = 1024;
|
2015-12-06 09:30:51 +00:00
|
|
|
|
|
|
|
Real m_squelchLevel;
|
|
|
|
int m_squelchState;
|
|
|
|
|
2015-12-12 01:17:41 +00:00
|
|
|
Real m_m1Arg; //!> x^-1 real sample
|
|
|
|
|
2017-05-16 21:39:49 +00:00
|
|
|
double m_magsq;
|
|
|
|
double m_magsqSum;
|
|
|
|
double m_magsqPeak;
|
|
|
|
int m_magsqCount;
|
2015-12-06 09:30:51 +00:00
|
|
|
|
|
|
|
AudioVector m_audioBuffer;
|
|
|
|
uint m_audioBufferFill;
|
|
|
|
|
2016-10-02 20:29:04 +00:00
|
|
|
BasebandSampleSink* m_sampleSink;
|
2015-12-06 09:30:51 +00:00
|
|
|
AudioFifo m_audioFifo;
|
|
|
|
SampleVector m_sampleBuffer;
|
|
|
|
QMutex m_settingsMutex;
|
|
|
|
|
2015-12-09 03:22:12 +00:00
|
|
|
RDSPhaseLock m_pilotPLL;
|
2015-12-25 23:19:41 +00:00
|
|
|
Real m_pilotPLLSamples[4];
|
2015-12-07 01:18:31 +00:00
|
|
|
|
2015-12-12 01:30:10 +00:00
|
|
|
RDSDemod m_rdsDemod;
|
2015-12-13 01:54:22 +00:00
|
|
|
RDSDecoder m_rdsDecoder;
|
2017-10-01 09:50:16 +00:00
|
|
|
RDSParser m_rdsParser;
|
2015-12-07 01:18:31 +00:00
|
|
|
|
2015-12-08 01:00:30 +00:00
|
|
|
LowPassFilterRC m_deemphasisFilterX;
|
|
|
|
LowPassFilterRC m_deemphasisFilterY;
|
2016-03-21 07:40:42 +00:00
|
|
|
static const Real default_deemphasis;
|
2015-12-08 01:00:30 +00:00
|
|
|
|
2015-12-12 01:17:41 +00:00
|
|
|
Real m_fmExcursion;
|
|
|
|
static const int default_excursion = 750000; // +/- 75 kHz
|
|
|
|
|
2015-12-17 00:13:42 +00:00
|
|
|
PhaseDiscriminators m_phaseDiscri;
|
2017-08-25 16:56:43 +00:00
|
|
|
UDPSink<AudioSample> *m_udpBufferAudio;
|
2015-12-10 13:10:48 +00:00
|
|
|
|
2017-08-25 16:56:43 +00:00
|
|
|
static const int m_udpBlockSize;
|
|
|
|
|
|
|
|
void apply(bool force = false);
|
2015-12-06 09:30:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // INCLUDE_BFMDEMOD_H
|