2014-11-16 17:39:50 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2012 maintech GmbH, Otto-Hahn-Str. 15, 97204 Hoechberg, Germany //
|
|
|
|
// written by Christian Daniel //
|
|
|
|
// //
|
|
|
|
// 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 //
|
2019-04-11 00:39:30 -04:00
|
|
|
// (at your option) any later version. //
|
2014-11-16 17:39:50 -05:00
|
|
|
// //
|
|
|
|
// 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_WFMDEMOD_H
|
|
|
|
#define INCLUDE_WFMDEMOD_H
|
|
|
|
|
|
|
|
#include <vector>
|
2017-11-19 12:18:17 -05:00
|
|
|
|
2018-12-24 08:46:15 -05:00
|
|
|
#include <QMutex>
|
|
|
|
#include <QNetworkRequest>
|
|
|
|
|
2017-11-19 12:18:17 -05:00
|
|
|
#include "dsp/basebandsamplesink.h"
|
|
|
|
#include "channel/channelsinkapi.h"
|
2015-05-14 05:08:23 -04:00
|
|
|
#include "dsp/nco.h"
|
2014-11-16 17:39:50 -05:00
|
|
|
#include "dsp/interpolator.h"
|
2015-05-14 05:08:23 -04:00
|
|
|
#include "dsp/lowpass.h"
|
2018-02-03 04:33:02 -05:00
|
|
|
#include "util/movingaverage.h"
|
2015-05-15 05:29:41 -04:00
|
|
|
#include "dsp/fftfilt.h"
|
2015-12-16 19:01:22 -05:00
|
|
|
#include "dsp/phasediscri.h"
|
2014-11-16 17:39:50 -05:00
|
|
|
#include "audio/audiofifo.h"
|
|
|
|
#include "util/message.h"
|
|
|
|
|
2017-10-07 21:17:13 -04:00
|
|
|
#include "wfmdemodsettings.h"
|
|
|
|
|
2015-05-15 05:29:41 -04:00
|
|
|
#define rfFilterFftLength 1024
|
|
|
|
|
2018-12-24 08:46:15 -05:00
|
|
|
class QNetworkAccessManager;
|
|
|
|
class QNetworkReply;
|
2017-10-07 21:29:33 -04:00
|
|
|
class ThreadedBasebandSampleSink;
|
|
|
|
class DownChannelizer;
|
|
|
|
class DeviceSourceAPI;
|
|
|
|
|
2017-11-19 12:18:17 -05:00
|
|
|
class WFMDemod : public BasebandSampleSink, public ChannelSinkAPI {
|
2018-12-24 08:46:15 -05:00
|
|
|
Q_OBJECT
|
2014-11-16 17:39:50 -05:00
|
|
|
public:
|
2017-10-07 21:17:13 -04:00
|
|
|
class MsgConfigureWFMDemod : public Message {
|
|
|
|
MESSAGE_CLASS_DECLARATION
|
|
|
|
|
|
|
|
public:
|
|
|
|
const WFMDemodSettings& getSettings() const { return m_settings; }
|
|
|
|
bool getForce() const { return m_force; }
|
|
|
|
|
|
|
|
static MsgConfigureWFMDemod* create(const WFMDemodSettings& settings, bool force)
|
|
|
|
{
|
|
|
|
return new MsgConfigureWFMDemod(settings, force);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
WFMDemodSettings m_settings;
|
|
|
|
bool m_force;
|
|
|
|
|
|
|
|
MsgConfigureWFMDemod(const WFMDemodSettings& settings, bool force) :
|
|
|
|
Message(),
|
|
|
|
m_settings(settings),
|
|
|
|
m_force(force)
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
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)
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
2017-10-07 21:29:33 -04:00
|
|
|
WFMDemod(DeviceSourceAPI *deviceAPI);
|
2015-08-17 02:29:34 -04:00
|
|
|
virtual ~WFMDemod();
|
2017-12-17 17:15:42 -05:00
|
|
|
virtual void destroy() { delete this; }
|
2014-11-16 17:39:50 -05:00
|
|
|
|
2015-08-25 02:24:23 -04:00
|
|
|
virtual void feed(const SampleVector::const_iterator& begin, const SampleVector::const_iterator& end, bool po);
|
2015-08-17 02:29:34 -04:00
|
|
|
virtual void start();
|
|
|
|
virtual void stop();
|
|
|
|
virtual bool handleMessage(const Message& cmd);
|
2014-11-16 17:39:50 -05:00
|
|
|
|
2017-11-19 12:18:17 -05:00
|
|
|
virtual void getIdentifier(QString& id) { id = objectName(); }
|
|
|
|
virtual void getTitle(QString& title) { title = m_settings.m_title; }
|
2017-12-17 17:15:42 -05:00
|
|
|
virtual qint64 getCenterFrequency() const { return m_settings.m_inputFrequencyOffset; }
|
|
|
|
|
|
|
|
virtual QByteArray serialize() const;
|
|
|
|
virtual bool deserialize(const QByteArray& data);
|
2017-11-19 12:18:17 -05:00
|
|
|
|
2018-02-03 04:33:02 -05:00
|
|
|
double getMagSq() const { return m_movingAverage.asDouble(); }
|
2017-04-26 04:04:02 -04:00
|
|
|
bool getSquelchOpen() const { return m_squelchOpen; }
|
2015-10-04 01:14:44 -04:00
|
|
|
|
2017-05-16 17:39:49 -04:00
|
|
|
void getMagSqLevels(double& avg, double& peak, int& nbSamples)
|
2017-04-26 05:09:07 -04:00
|
|
|
{
|
2018-08-05 06:44:06 -04:00
|
|
|
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;
|
2017-05-16 11:46:44 -04:00
|
|
|
nbSamples = m_magsqCount == 0 ? 1 : m_magsqCount;
|
2018-08-05 06:44:06 -04:00
|
|
|
|
2017-04-26 05:09:07 -04:00
|
|
|
m_magsqSum = 0.0f;
|
|
|
|
m_magsqPeak = 0.0f;
|
|
|
|
m_magsqCount = 0;
|
|
|
|
}
|
|
|
|
|
2018-05-25 04:08:47 -04:00
|
|
|
virtual int webapiSettingsGet(
|
|
|
|
SWGSDRangel::SWGChannelSettings& response,
|
|
|
|
QString& errorMessage);
|
|
|
|
|
|
|
|
virtual int webapiSettingsPutPatch(
|
|
|
|
bool force,
|
|
|
|
const QStringList& channelSettingsKeys,
|
|
|
|
SWGSDRangel::SWGChannelSettings& response,
|
|
|
|
QString& errorMessage);
|
|
|
|
|
|
|
|
virtual int webapiReportGet(
|
|
|
|
SWGSDRangel::SWGChannelReport& response,
|
|
|
|
QString& errorMessage);
|
|
|
|
|
|
|
|
static int requiredBW(int rfBW)
|
|
|
|
{
|
|
|
|
if (rfBW <= 48000) {
|
|
|
|
return 48000;
|
|
|
|
} else {
|
|
|
|
return (3*rfBW)/2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-22 19:19:32 -05:00
|
|
|
static const QString m_channelIdURI;
|
|
|
|
static const QString m_channelId;
|
2017-11-08 08:23:49 -05:00
|
|
|
|
2014-11-16 17:39:50 -05:00
|
|
|
private:
|
2018-08-05 06:44:06 -04:00
|
|
|
struct MagSqLevelsStore
|
|
|
|
{
|
|
|
|
MagSqLevelsStore() :
|
|
|
|
m_magsq(1e-12),
|
|
|
|
m_magsqPeak(1e-12)
|
|
|
|
{}
|
|
|
|
double m_magsq;
|
|
|
|
double m_magsqPeak;
|
|
|
|
};
|
|
|
|
|
2015-05-14 05:08:23 -04:00
|
|
|
enum RateState {
|
|
|
|
RSInitialFill,
|
|
|
|
RSRunning
|
|
|
|
};
|
|
|
|
|
2017-10-07 21:29:33 -04:00
|
|
|
DeviceSourceAPI* m_deviceAPI;
|
|
|
|
ThreadedBasebandSampleSink* m_threadedChannelizer;
|
|
|
|
DownChannelizer* m_channelizer;
|
2017-11-19 12:18:17 -05:00
|
|
|
|
2017-12-29 05:04:47 -05:00
|
|
|
int m_inputSampleRate;
|
|
|
|
int m_inputFrequencyOffset;
|
2017-10-07 21:29:33 -04:00
|
|
|
WFMDemodSettings m_settings;
|
2018-03-28 01:44:54 -04:00
|
|
|
quint32 m_audioSampleRate;
|
2015-05-14 05:08:23 -04:00
|
|
|
|
|
|
|
NCO m_nco;
|
2015-08-23 20:59:18 -04:00
|
|
|
Interpolator m_interpolator; //!< Interpolator between sample rate sent from DSP engine and requested RF bandwidth (rational)
|
2015-05-14 05:08:23 -04:00
|
|
|
Real m_interpolatorDistance;
|
|
|
|
Real m_interpolatorDistanceRemain;
|
2015-05-15 05:29:41 -04:00
|
|
|
fftfilt* m_rfFilter;
|
2014-11-16 17:39:50 -05:00
|
|
|
|
2015-05-14 05:08:23 -04:00
|
|
|
Real m_squelchLevel;
|
|
|
|
int m_squelchState;
|
2017-04-26 04:04:02 -04:00
|
|
|
bool m_squelchOpen;
|
2017-05-16 17:39:49 -04:00
|
|
|
double m_magsq; //!< displayed averaged value
|
|
|
|
double m_magsqSum;
|
|
|
|
double m_magsqPeak;
|
2017-04-26 05:09:07 -04:00
|
|
|
int m_magsqCount;
|
2018-08-05 06:44:06 -04:00
|
|
|
MagSqLevelsStore m_magSqLevelStore;
|
2014-12-22 14:33:50 -05:00
|
|
|
|
2018-02-03 04:33:02 -05:00
|
|
|
MovingAverageUtil<Real, double, 16> m_movingAverage;
|
2015-12-16 19:01:22 -05:00
|
|
|
Real m_fmExcursion;
|
2014-11-16 17:39:50 -05:00
|
|
|
|
|
|
|
AudioVector m_audioBuffer;
|
|
|
|
uint m_audioBufferFill;
|
|
|
|
|
2015-08-23 20:59:18 -04:00
|
|
|
AudioFifo m_audioFifo;
|
2014-11-16 17:39:50 -05:00
|
|
|
SampleVector m_sampleBuffer;
|
2015-08-24 16:09:46 -04:00
|
|
|
QMutex m_settingsMutex;
|
2014-11-21 14:44:19 -05:00
|
|
|
|
2015-12-16 19:01:22 -05:00
|
|
|
PhaseDiscriminators m_phaseDiscri;
|
|
|
|
|
2018-12-24 08:46:15 -05:00
|
|
|
QNetworkAccessManager *m_networkManager;
|
|
|
|
QNetworkRequest m_networkRequest;
|
|
|
|
|
2017-11-21 17:30:09 -05:00
|
|
|
static const int m_udpBlockSize;
|
|
|
|
|
2018-03-28 01:44:54 -04:00
|
|
|
void applyAudioSampleRate(int sampleRate);
|
2018-01-08 18:59:10 -05:00
|
|
|
void applyChannelSettings(int inputSampleRate, int inputFrequencyOffset, bool force = false);
|
2017-11-21 17:30:09 -05:00
|
|
|
void applySettings(const WFMDemodSettings& settings, bool force = false);
|
2018-05-25 04:08:47 -04:00
|
|
|
|
|
|
|
void webapiFormatChannelSettings(SWGSDRangel::SWGChannelSettings& response, const WFMDemodSettings& settings);
|
|
|
|
void webapiFormatChannelReport(SWGSDRangel::SWGChannelReport& response);
|
2018-12-24 08:46:15 -05:00
|
|
|
void webapiReverseSendSettings(QList<QString>& channelSettingsKeys, const WFMDemodSettings& settings, bool force);
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void networkManagerFinished(QNetworkReply *reply);
|
2014-11-16 17:39:50 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // INCLUDE_WFMDEMOD_H
|