mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-03 15:31:15 -05:00
245 lines
8.1 KiB
C++
245 lines
8.1 KiB
C++
///////////////////////////////////////////////////////////////////////////////////
|
|
// Copyright (C) 2016-2020, 2022 Edouard Griffiths, F4EXB <f4exb06@gmail.com> //
|
|
// //
|
|
// 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 //
|
|
// (at your option) any later version. //
|
|
// //
|
|
// 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 PLUGINS_SAMPLESOURCE_SDRPLAY_SDRPLAYINPUT_H_
|
|
#define PLUGINS_SAMPLESOURCE_SDRPLAY_SDRPLAYINPUT_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <QString>
|
|
#include <QByteArray>
|
|
#include <QNetworkRequest>
|
|
|
|
#include <mirisdr.h>
|
|
#include "dsp/devicesamplesource.h"
|
|
#include "sdrplaysettings.h"
|
|
|
|
class QNetworkAccessManager;
|
|
class QNetworkReply;
|
|
class DeviceAPI;
|
|
class SDRPlayThread;
|
|
|
|
class SDRPlayInput : public DeviceSampleSource {
|
|
Q_OBJECT
|
|
public:
|
|
enum SDRPlayVariant
|
|
{
|
|
SDRPlayUndef,
|
|
SDRPlayRSP1,
|
|
SDRPlayRSP1A,
|
|
SDRPlayRSP2
|
|
};
|
|
|
|
class MsgConfigureSDRPlay : public Message {
|
|
MESSAGE_CLASS_DECLARATION
|
|
|
|
public:
|
|
const SDRPlaySettings& getSettings() const { return m_settings; }
|
|
const QList<QString>& getSettingsKeys() const { return m_settingsKeys; }
|
|
bool getForce() const { return m_force; }
|
|
|
|
static MsgConfigureSDRPlay* create(const SDRPlaySettings& settings, const QList<QString>& settingsKeys, bool force) {
|
|
return new MsgConfigureSDRPlay(settings, settingsKeys, force);
|
|
}
|
|
|
|
private:
|
|
SDRPlaySettings m_settings;
|
|
QList<QString> m_settingsKeys;
|
|
bool m_force;
|
|
|
|
MsgConfigureSDRPlay(const SDRPlaySettings& settings, const QList<QString>& settingsKeys, bool force) :
|
|
Message(),
|
|
m_settings(settings),
|
|
m_settingsKeys(settingsKeys),
|
|
m_force(force)
|
|
{ }
|
|
};
|
|
|
|
class MsgReportSDRPlayGains : public Message {
|
|
MESSAGE_CLASS_DECLARATION
|
|
|
|
public:
|
|
static MsgReportSDRPlayGains* create(int lnaGain, int mixerGain, int basebandGain, int tunerGain)
|
|
{
|
|
return new MsgReportSDRPlayGains(lnaGain, mixerGain, basebandGain, tunerGain);
|
|
}
|
|
|
|
int getLNAGain() const { return m_lnaGain; }
|
|
int getMixerGain() const { return m_mixerGain; }
|
|
int getBasebandGain() const { return m_basebandGain; }
|
|
int getTunerGain() const { return m_tunerGain; }
|
|
|
|
protected:
|
|
int m_lnaGain;
|
|
int m_mixerGain;
|
|
int m_basebandGain;
|
|
int m_tunerGain;
|
|
|
|
MsgReportSDRPlayGains(int lnaGain, int mixerGain, int basebandGain, int tunerGain) :
|
|
Message(),
|
|
m_lnaGain(lnaGain),
|
|
m_mixerGain(mixerGain),
|
|
m_basebandGain(basebandGain),
|
|
m_tunerGain(tunerGain)
|
|
{ }
|
|
};
|
|
|
|
class MsgStartStop : public Message {
|
|
MESSAGE_CLASS_DECLARATION
|
|
|
|
public:
|
|
bool getStartStop() const { return m_startStop; }
|
|
|
|
static MsgStartStop* create(bool startStop) {
|
|
return new MsgStartStop(startStop);
|
|
}
|
|
|
|
protected:
|
|
bool m_startStop;
|
|
|
|
MsgStartStop(bool startStop) :
|
|
Message(),
|
|
m_startStop(startStop)
|
|
{ }
|
|
};
|
|
|
|
SDRPlayInput(DeviceAPI *deviceAPI);
|
|
virtual ~SDRPlayInput();
|
|
virtual void destroy();
|
|
|
|
virtual void init();
|
|
virtual bool start();
|
|
virtual void stop();
|
|
|
|
virtual QByteArray serialize() const;
|
|
virtual bool deserialize(const QByteArray& data);
|
|
|
|
virtual void setMessageQueueToGUI(MessageQueue *queue) { m_guiMessageQueue = queue; }
|
|
virtual const QString& getDeviceDescription() const;
|
|
virtual int getSampleRate() const;
|
|
virtual void setSampleRate(int sampleRate) { (void) sampleRate; }
|
|
virtual quint64 getCenterFrequency() const;
|
|
virtual void setCenterFrequency(qint64 centerFrequency);
|
|
|
|
virtual bool handleMessage(const Message& message);
|
|
|
|
virtual int webapiSettingsGet(
|
|
SWGSDRangel::SWGDeviceSettings& response,
|
|
QString& errorMessage);
|
|
|
|
virtual int webapiSettingsPutPatch(
|
|
bool force,
|
|
const QStringList& deviceSettingsKeys,
|
|
SWGSDRangel::SWGDeviceSettings& response, // query + response
|
|
QString& errorMessage);
|
|
|
|
virtual int webapiReportGet(
|
|
SWGSDRangel::SWGDeviceReport& response,
|
|
QString& errorMessage);
|
|
|
|
virtual int webapiRunGet(
|
|
SWGSDRangel::SWGDeviceState& response,
|
|
QString& errorMessage);
|
|
|
|
virtual int webapiRun(
|
|
bool run,
|
|
SWGSDRangel::SWGDeviceState& response,
|
|
QString& errorMessage);
|
|
|
|
static void webapiFormatDeviceSettings(
|
|
SWGSDRangel::SWGDeviceSettings& response,
|
|
const SDRPlaySettings& settings);
|
|
|
|
static void webapiUpdateDeviceSettings(
|
|
SDRPlaySettings& settings,
|
|
const QStringList& deviceSettingsKeys,
|
|
SWGSDRangel::SWGDeviceSettings& response);
|
|
|
|
SDRPlayVariant getVariant() const { return m_variant; }
|
|
|
|
private:
|
|
DeviceAPI *m_deviceAPI;
|
|
QMutex m_mutex;
|
|
SDRPlayVariant m_variant;
|
|
SDRPlaySettings m_settings;
|
|
mirisdr_dev_t* m_dev;
|
|
SDRPlayThread* m_sdrPlayThread;
|
|
QString m_deviceDescription;
|
|
int m_devNumber;
|
|
bool m_running;
|
|
QNetworkAccessManager *m_networkManager;
|
|
QNetworkRequest m_networkRequest;
|
|
|
|
bool openDevice();
|
|
void closeDevice();
|
|
bool applySettings(const SDRPlaySettings& settings, const QList<QString>& settingsKeys, bool forwardChange, bool force);
|
|
bool setDeviceCenterFrequency(quint64 freq);
|
|
void webapiFormatDeviceReport(SWGSDRangel::SWGDeviceReport& response);
|
|
void webapiReverseSendSettings(const QList<QString>& deviceSettingsKeys, const SDRPlaySettings& settings, bool force);
|
|
void webapiReverseSendStartStop(bool start);
|
|
|
|
private slots:
|
|
void networkManagerFinished(QNetworkReply *reply);
|
|
};
|
|
|
|
// ====================================================================
|
|
|
|
class SDRPlaySampleRates {
|
|
public:
|
|
static unsigned int getRate(unsigned int rate_index);
|
|
static unsigned int getRateIndex(unsigned int rate);
|
|
static unsigned int getNbRates();
|
|
private:
|
|
static const unsigned int m_nb_rates = 18;
|
|
static unsigned int m_rates[m_nb_rates];
|
|
};
|
|
|
|
class SDRPlayBandwidths {
|
|
public:
|
|
static unsigned int getBandwidth(unsigned int bandwidth_index);
|
|
static unsigned int getBandwidthIndex(unsigned int bandwidth);
|
|
static unsigned int getNbBandwidths();
|
|
private:
|
|
static const unsigned int m_nb_bw = 8;
|
|
static unsigned int m_bw[m_nb_bw];
|
|
};
|
|
|
|
class SDRPlayIF {
|
|
public:
|
|
static unsigned int getIF(unsigned int if_index);
|
|
static unsigned int getIFIndex(unsigned int iff);
|
|
static unsigned int getNbIFs();
|
|
private:
|
|
static const unsigned int m_nb_if = 4;
|
|
static unsigned int m_if[m_nb_if];
|
|
};
|
|
|
|
class SDRPlayBands {
|
|
public:
|
|
static QString getBandName(unsigned int band_index);
|
|
static unsigned int getBandLow(unsigned int band_index);
|
|
static unsigned int getBandHigh(unsigned int band_index);
|
|
static unsigned int getNbBands();
|
|
private:
|
|
static const unsigned int m_nb_bands = 8;
|
|
static unsigned int m_bandLow[m_nb_bands];
|
|
static unsigned int m_bandHigh[m_nb_bands];
|
|
static const char* m_bandName[m_nb_bands];
|
|
};
|
|
|
|
#endif /* PLUGINS_SAMPLESOURCE_SDRPLAY_SDRPLAYINPUT_H_ */
|