2014-05-18 15:52:39 +00: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 04:39:30 +00:00
|
|
|
// (at your option) any later version. //
|
2014-05-18 15:52:39 +00: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 17:49:52 +00:00
|
|
|
#ifndef INCLUDE_NFMDEMOD_H
|
|
|
|
#define INCLUDE_NFMDEMOD_H
|
2014-05-18 15:52:39 +00:00
|
|
|
|
|
|
|
#include <vector>
|
2017-11-19 17:18:17 +00:00
|
|
|
|
2018-12-23 22:19:05 +00:00
|
|
|
#include <QNetworkRequest>
|
|
|
|
|
2017-11-19 17:18:17 +00:00
|
|
|
#include "dsp/basebandsamplesink.h"
|
2019-05-09 15:27:12 +00:00
|
|
|
#include "channel/channelapi.h"
|
2014-05-18 15:52:39 +00:00
|
|
|
#include "util/message.h"
|
|
|
|
|
2019-11-23 06:39:57 +00:00
|
|
|
#include "nfmdemodbaseband.h"
|
2017-10-08 09:37:15 +00:00
|
|
|
#include "nfmdemodsettings.h"
|
|
|
|
|
2018-12-23 22:19:05 +00:00
|
|
|
class QNetworkAccessManager;
|
|
|
|
class QNetworkReply;
|
2019-11-23 06:39:57 +00:00
|
|
|
class QThread;
|
2019-05-08 20:11:53 +00:00
|
|
|
class DeviceAPI;
|
2014-05-18 15:52:39 +00:00
|
|
|
|
2019-05-09 15:27:12 +00:00
|
|
|
class NFMDemod : public BasebandSampleSink, public ChannelAPI {
|
2018-12-23 22:19:05 +00:00
|
|
|
Q_OBJECT
|
2014-05-18 15:52:39 +00:00
|
|
|
public:
|
2017-10-08 09:37:15 +00: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 20:11:53 +00:00
|
|
|
NFMDemod(DeviceAPI *deviceAPI);
|
2020-10-04 17:07:42 +00:00
|
|
|
virtual ~NFMDemod();
|
2017-12-17 22:15:42 +00:00
|
|
|
virtual void destroy() { delete this; }
|
2014-05-18 15:52:39 +00:00
|
|
|
|
2020-11-15 07:31:49 +00:00
|
|
|
using BasebandSampleSink::feed;
|
|
|
|
virtual void feed(const SampleVector::const_iterator& begin, const SampleVector::const_iterator& end, bool po);
|
2015-08-17 06:29:34 +00:00
|
|
|
virtual void start();
|
|
|
|
virtual void stop();
|
|
|
|
virtual bool handleMessage(const Message& cmd);
|
2014-05-18 15:52:39 +00:00
|
|
|
|
2020-10-03 02:47:20 +00:00
|
|
|
virtual void getIdentifier(QString& id) { id = m_channelId; }
|
|
|
|
virtual const QString& getURI() const { return m_channelIdURI; }
|
2017-11-19 17:18:17 +00:00
|
|
|
virtual void getTitle(QString& title) { title = m_settings.m_title; }
|
2017-12-17 22:15:42 +00:00
|
|
|
virtual qint64 getCenterFrequency() const { return m_settings.m_inputFrequencyOffset; }
|
|
|
|
|
|
|
|
virtual QByteArray serialize() const;
|
|
|
|
virtual bool deserialize(const QByteArray& data);
|
2017-11-19 17:18:17 +00:00
|
|
|
|
2019-05-09 15:27:12 +00: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 19:27:08 +00:00
|
|
|
virtual int webapiSettingsGet(
|
|
|
|
SWGSDRangel::SWGChannelSettings& response,
|
|
|
|
QString& errorMessage);
|
|
|
|
|
2017-12-11 17:18:47 +00:00
|
|
|
virtual int webapiSettingsPutPatch(
|
|
|
|
bool force,
|
2017-12-24 02:27:07 +00:00
|
|
|
const QStringList& channelSettingsKeys,
|
2017-12-11 17:18:47 +00:00
|
|
|
SWGSDRangel::SWGChannelSettings& response,
|
|
|
|
QString& errorMessage);
|
|
|
|
|
2018-03-18 19:17:11 +00:00
|
|
|
virtual int webapiReportGet(
|
|
|
|
SWGSDRangel::SWGChannelReport& response,
|
|
|
|
QString& errorMessage);
|
|
|
|
|
2019-08-01 21:21:57 +00:00
|
|
|
static void webapiFormatChannelSettings(
|
|
|
|
SWGSDRangel::SWGChannelSettings& response,
|
|
|
|
const NFMDemodSettings& settings);
|
|
|
|
|
|
|
|
static void webapiUpdateChannelSettings(
|
|
|
|
NFMDemodSettings& settings,
|
|
|
|
const QStringList& channelSettingsKeys,
|
|
|
|
SWGSDRangel::SWGChannelSettings& response);
|
|
|
|
|
2019-11-23 08:57:26 +00:00
|
|
|
const Real *getCtcssToneSet(int& nbTones) const { return m_basebandSink->getCtcssToneSet(nbTones); }
|
2019-11-23 06:39:57 +00: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 18:27:35 +00:00
|
|
|
void setMessageQueueToGUI(MessageQueue* queue) override {
|
|
|
|
BasebandSampleSink::setMessageQueueToGUI(queue);
|
|
|
|
m_basebandSink->setMessageQueueToGUI(queue);
|
|
|
|
}
|
2020-08-01 08:09:39 +00:00
|
|
|
int getAudioSampleRate() const { return m_basebandSink->getAudioSampleRate(); }
|
2016-12-05 01:09:08 +00:00
|
|
|
|
2019-09-22 23:25:17 +00:00
|
|
|
uint32_t getNumberOfDeviceStreams() const;
|
|
|
|
|
2017-11-23 00:19:32 +00:00
|
|
|
static const QString m_channelIdURI;
|
|
|
|
static const QString m_channelId;
|
2017-11-08 13:23:49 +00:00
|
|
|
|
2014-05-18 15:52:39 +00:00
|
|
|
private:
|
2019-05-08 20:11:53 +00:00
|
|
|
DeviceAPI* m_deviceAPI;
|
2019-11-23 06:39:57 +00:00
|
|
|
QThread *m_thread;
|
|
|
|
NFMDemodBaseband* m_basebandSink;
|
2017-10-08 09:37:15 +00:00
|
|
|
NFMDemodSettings m_settings;
|
2019-11-23 06:39:57 +00:00
|
|
|
int m_basebandSampleRate; //!< stored from device message used when starting baseband sink
|
2015-12-16 07:49:09 +00:00
|
|
|
|
2018-12-23 22:19:05 +00:00
|
|
|
QNetworkAccessManager *m_networkManager;
|
|
|
|
QNetworkRequest m_networkRequest;
|
|
|
|
|
2017-08-26 22:27:11 +00:00
|
|
|
static const int m_udpBlockSize;
|
|
|
|
|
2017-10-08 09:37:15 +00:00
|
|
|
void applySettings(const NFMDemodSettings& settings, bool force = false);
|
2018-03-18 19:17:11 +00:00
|
|
|
void webapiFormatChannelReport(SWGSDRangel::SWGChannelReport& response);
|
2018-12-23 22:19:05 +00:00
|
|
|
void webapiReverseSendSettings(QList<QString>& channelSettingsKeys, const NFMDemodSettings& settings, bool force);
|
2020-10-22 22:11:18 +00: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 22:19:05 +00:00
|
|
|
|
|
|
|
private slots:
|
|
|
|
void networkManagerFinished(QNetworkReply *reply);
|
2014-05-18 15:52:39 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // INCLUDE_NFMDEMOD_H
|