2014-05-18 11:52:39 -04: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-05-18 11:52:39 -04: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/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2019-12-03 12:49:52 -05:00
|
|
|
#ifndef INCLUDE_NFMDEMOD_H
|
|
|
|
#define INCLUDE_NFMDEMOD_H
|
2014-05-18 11:52:39 -04:00
|
|
|
|
|
|
|
#include <vector>
|
2017-11-19 12:18:17 -05:00
|
|
|
|
2018-12-23 17:19:05 -05:00
|
|
|
#include <QNetworkRequest>
|
|
|
|
|
2017-11-19 12:18:17 -05:00
|
|
|
#include "dsp/basebandsamplesink.h"
|
2019-05-09 11:27:12 -04:00
|
|
|
#include "channel/channelapi.h"
|
2014-05-18 11:52:39 -04:00
|
|
|
#include "util/message.h"
|
|
|
|
|
2019-11-23 01:39:57 -05:00
|
|
|
#include "nfmdemodbaseband.h"
|
2017-10-08 05:37:15 -04:00
|
|
|
#include "nfmdemodsettings.h"
|
|
|
|
|
2018-12-23 17:19:05 -05:00
|
|
|
class QNetworkAccessManager;
|
|
|
|
class QNetworkReply;
|
2019-11-23 01:39:57 -05:00
|
|
|
class QThread;
|
2019-05-08 16:11:53 -04:00
|
|
|
class DeviceAPI;
|
2014-05-18 11:52:39 -04:00
|
|
|
|
2019-05-09 11:27:12 -04:00
|
|
|
class NFMDemod : public BasebandSampleSink, public ChannelAPI {
|
2018-12-23 17:19:05 -05:00
|
|
|
Q_OBJECT
|
2014-05-18 11:52:39 -04:00
|
|
|
public:
|
2017-10-08 05:37:15 -04:00
|
|
|
class MsgConfigureNFMDemod : public Message {
|
|
|
|
MESSAGE_CLASS_DECLARATION
|
|
|
|
|
|
|
|
public:
|
|
|
|
const NFMDemodSettings& getSettings() const { return m_settings; }
|
|
|
|
bool getForce() const { return m_force; }
|
|
|
|
|
|
|
|
static MsgConfigureNFMDemod* create(const NFMDemodSettings& settings, bool force)
|
|
|
|
{
|
|
|
|
return new MsgConfigureNFMDemod(settings, force);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
NFMDemodSettings m_settings;
|
|
|
|
bool m_force;
|
|
|
|
|
|
|
|
MsgConfigureNFMDemod(const NFMDemodSettings& settings, bool force) :
|
|
|
|
Message(),
|
|
|
|
m_settings(settings),
|
|
|
|
m_force(force)
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
2019-05-08 16:11:53 -04:00
|
|
|
NFMDemod(DeviceAPI *deviceAPI);
|
2020-10-04 13:07:42 -04:00
|
|
|
virtual ~NFMDemod();
|
2017-12-17 17:15:42 -05:00
|
|
|
virtual void destroy() { delete this; }
|
2014-05-18 11:52:39 -04:00
|
|
|
|
2019-11-23 01:39:57 -05:00
|
|
|
virtual void feed(const SampleVector::const_iterator& begin, const SampleVector::const_iterator& end, bool positive);
|
2015-08-17 02:29:34 -04:00
|
|
|
virtual void start();
|
|
|
|
virtual void stop();
|
|
|
|
virtual bool handleMessage(const Message& cmd);
|
2014-05-18 11:52:39 -04:00
|
|
|
|
2020-10-02 22:47:20 -04:00
|
|
|
virtual void getIdentifier(QString& id) { id = m_channelId; }
|
|
|
|
virtual const QString& getURI() const { return m_channelIdURI; }
|
2017-11-19 12:18:17 -05:00
|
|
|
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
|
|
|
|
2019-05-09 11:27:12 -04:00
|
|
|
virtual int getNbSinkStreams() const { return 1; }
|
|
|
|
virtual int getNbSourceStreams() const { return 0; }
|
|
|
|
|
|
|
|
virtual qint64 getStreamCenterFrequency(int streamIndex, bool sinkElseSource) const
|
|
|
|
{
|
|
|
|
(void) streamIndex;
|
|
|
|
(void) sinkElseSource;
|
|
|
|
return m_settings.m_inputFrequencyOffset;
|
|
|
|
}
|
|
|
|
|
2017-12-10 14:27:08 -05:00
|
|
|
virtual int webapiSettingsGet(
|
|
|
|
SWGSDRangel::SWGChannelSettings& response,
|
|
|
|
QString& errorMessage);
|
|
|
|
|
2017-12-11 12:18:47 -05:00
|
|
|
virtual int webapiSettingsPutPatch(
|
|
|
|
bool force,
|
2017-12-23 21:27:07 -05:00
|
|
|
const QStringList& channelSettingsKeys,
|
2017-12-11 12:18:47 -05:00
|
|
|
SWGSDRangel::SWGChannelSettings& response,
|
|
|
|
QString& errorMessage);
|
|
|
|
|
2018-03-18 15:17:11 -04:00
|
|
|
virtual int webapiReportGet(
|
|
|
|
SWGSDRangel::SWGChannelReport& response,
|
|
|
|
QString& errorMessage);
|
|
|
|
|
2019-08-01 17:21:57 -04:00
|
|
|
static void webapiFormatChannelSettings(
|
|
|
|
SWGSDRangel::SWGChannelSettings& response,
|
|
|
|
const NFMDemodSettings& settings);
|
|
|
|
|
|
|
|
static void webapiUpdateChannelSettings(
|
|
|
|
NFMDemodSettings& settings,
|
|
|
|
const QStringList& channelSettingsKeys,
|
|
|
|
SWGSDRangel::SWGChannelSettings& response);
|
|
|
|
|
2019-11-23 03:57:26 -05:00
|
|
|
const Real *getCtcssToneSet(int& nbTones) const { return m_basebandSink->getCtcssToneSet(nbTones); }
|
2019-11-23 01:39:57 -05:00
|
|
|
void setSelectedCtcssIndex(int selectedCtcssIndex) { m_basebandSink->setSelectedCtcssIndex(selectedCtcssIndex); }
|
|
|
|
bool getSquelchOpen() const { return m_basebandSink->getSquelchOpen(); }
|
|
|
|
void getMagSqLevels(double& avg, double& peak, int& nbSamples) { m_basebandSink->getMagSqLevels(avg, peak, nbSamples); }
|
2020-10-31 14:27:35 -04:00
|
|
|
void setMessageQueueToGUI(MessageQueue* queue) override {
|
|
|
|
BasebandSampleSink::setMessageQueueToGUI(queue);
|
|
|
|
m_basebandSink->setMessageQueueToGUI(queue);
|
|
|
|
}
|
2020-08-01 04:09:39 -04:00
|
|
|
int getAudioSampleRate() const { return m_basebandSink->getAudioSampleRate(); }
|
2016-12-04 20:09:08 -05:00
|
|
|
|
2019-09-22 19:25:17 -04:00
|
|
|
uint32_t getNumberOfDeviceStreams() const;
|
|
|
|
|
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-05-18 11:52:39 -04:00
|
|
|
private:
|
2019-05-08 16:11:53 -04:00
|
|
|
DeviceAPI* m_deviceAPI;
|
2019-11-23 01:39:57 -05:00
|
|
|
QThread *m_thread;
|
|
|
|
NFMDemodBaseband* m_basebandSink;
|
2017-10-08 05:37:15 -04:00
|
|
|
NFMDemodSettings m_settings;
|
2019-11-23 01:39:57 -05:00
|
|
|
int m_basebandSampleRate; //!< stored from device message used when starting baseband sink
|
2015-12-16 02:49:09 -05:00
|
|
|
|
2018-12-23 17:19:05 -05:00
|
|
|
QNetworkAccessManager *m_networkManager;
|
|
|
|
QNetworkRequest m_networkRequest;
|
|
|
|
|
2017-08-26 18:27:11 -04:00
|
|
|
static const int m_udpBlockSize;
|
|
|
|
|
2017-10-08 05:37:15 -04:00
|
|
|
void applySettings(const NFMDemodSettings& settings, bool force = false);
|
2018-03-18 15:17:11 -04:00
|
|
|
void webapiFormatChannelReport(SWGSDRangel::SWGChannelReport& response);
|
2018-12-23 17:19:05 -05:00
|
|
|
void webapiReverseSendSettings(QList<QString>& channelSettingsKeys, const NFMDemodSettings& settings, bool force);
|
2020-10-22 18:11:18 -04:00
|
|
|
void featuresSendSettings(QList<QString>& channelSettingsKeys, const NFMDemodSettings& settings, bool force);
|
|
|
|
void webapiFormatChannelSettings(
|
|
|
|
QList<QString>& channelSettingsKeys,
|
|
|
|
SWGSDRangel::SWGChannelSettings *swgChannelSettings,
|
|
|
|
const NFMDemodSettings& settings,
|
|
|
|
bool force
|
|
|
|
);
|
2018-12-23 17:19:05 -05:00
|
|
|
|
|
|
|
private slots:
|
|
|
|
void networkManagerFinished(QNetworkReply *reply);
|
2014-05-18 11:52:39 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // INCLUDE_NFMDEMOD_H
|