2018-10-29 16:39:25 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
2023-11-18 10:07:41 +01:00
|
|
|
// Copyright (C) 2016-2020, 2022 Edouard Griffiths, F4EXB <f4exb06@gmail.com> //
|
2018-10-29 16:39:25 +01: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 //
|
2019-04-11 06:57:41 +02:00
|
|
|
// (at your option) any later version. //
|
2018-10-29 16:39:25 +01: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 PLUGINS_SAMPLESOURCE_SOAPYSDRINPUT_SOAPYSDRINPUTGUI_H_
|
|
|
|
#define PLUGINS_SAMPLESOURCE_SOAPYSDRINPUT_SOAPYSDRINPUTGUI_H_
|
|
|
|
|
|
|
|
#include <QTimer>
|
|
|
|
#include <QWidget>
|
|
|
|
|
2020-10-05 19:23:13 +02:00
|
|
|
#include "device/devicegui.h"
|
2018-10-29 16:39:25 +01:00
|
|
|
#include "util/messagequeue.h"
|
2018-11-05 17:27:32 +01:00
|
|
|
|
2018-10-29 16:39:25 +01:00
|
|
|
#include "soapysdrinput.h"
|
|
|
|
|
|
|
|
class DeviceUISet;
|
2018-11-01 10:06:27 +01:00
|
|
|
class ItemSettingGUI;
|
2018-11-05 02:19:40 +01:00
|
|
|
class StringRangeGUI;
|
2018-11-05 17:27:32 +01:00
|
|
|
class DynamicItemSettingGUI;
|
2018-11-11 02:30:10 +01:00
|
|
|
class DynamicArgSettingGUI;
|
2018-11-07 01:33:17 +01:00
|
|
|
class IntervalSliderGUI;
|
2018-11-08 01:31:39 +01:00
|
|
|
class QCheckBox;
|
2018-11-08 14:35:26 +01:00
|
|
|
class ComplexFactorGUI;
|
2018-10-29 16:39:25 +01:00
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class SoapySDRInputGui;
|
|
|
|
}
|
|
|
|
|
2020-10-05 19:23:13 +02:00
|
|
|
class SoapySDRInputGui : public DeviceGUI {
|
2018-10-29 16:39:25 +01:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit SoapySDRInputGui(DeviceUISet *deviceUISet, QWidget* parent = 0);
|
|
|
|
virtual ~SoapySDRInputGui();
|
|
|
|
virtual void destroy();
|
|
|
|
|
|
|
|
virtual void resetToDefaults();
|
|
|
|
virtual QByteArray serialize() const;
|
|
|
|
virtual bool deserialize(const QByteArray& data);
|
|
|
|
virtual MessageQueue *getInputMessageQueue() { return &m_inputMessageQueue; }
|
|
|
|
|
2022-04-21 07:53:36 +02:00
|
|
|
protected:
|
|
|
|
void resizeEvent(QResizeEvent* size);
|
|
|
|
|
2018-10-29 16:39:25 +01:00
|
|
|
private:
|
2018-11-05 02:19:40 +01:00
|
|
|
void createRangesControl(
|
|
|
|
ItemSettingGUI **settingGUI,
|
|
|
|
const SoapySDR::RangeList& rangeList,
|
|
|
|
const QString& text,
|
|
|
|
const QString& unit);
|
2018-11-04 23:54:16 +01:00
|
|
|
void createAntennasControl(const std::vector<std::string>& antennaList);
|
2018-11-05 17:27:32 +01:00
|
|
|
void createTunableElementsControl(const std::vector<DeviceSoapySDRParams::FrequencySetting>& tunableElementsList);
|
2018-11-07 01:33:17 +01:00
|
|
|
void createGlobalGainControl();
|
2018-11-07 13:38:42 +01:00
|
|
|
void createIndividualGainsControl(const std::vector<DeviceSoapySDRParams::GainSetting>& individualGainsList);
|
2018-11-08 14:35:26 +01:00
|
|
|
void createCorrectionsControl();
|
2018-11-12 01:10:51 +01:00
|
|
|
void createArgumentsControl(const SoapySDR::ArgInfoList& argInfoList, bool deviceArguments);
|
2022-04-07 16:32:03 +02:00
|
|
|
void makeUIConnections();
|
2018-11-04 23:54:16 +01:00
|
|
|
|
2018-10-29 16:39:25 +01:00
|
|
|
Ui::SoapySDRInputGui* ui;
|
|
|
|
|
|
|
|
bool m_forceSettings;
|
|
|
|
bool m_doApplySettings;
|
2018-11-01 11:43:42 +01:00
|
|
|
SoapySDRInputSettings m_settings;
|
2018-10-29 16:39:25 +01:00
|
|
|
QTimer m_updateTimer;
|
|
|
|
QTimer m_statusTimer;
|
|
|
|
SoapySDRInput* m_sampleSource;
|
|
|
|
int m_sampleRate;
|
|
|
|
quint64 m_deviceCenterFrequency; //!< Center frequency in device
|
|
|
|
int m_lastEngineState;
|
|
|
|
MessageQueue m_inputMessageQueue;
|
2018-11-01 10:06:27 +01:00
|
|
|
|
2018-11-04 23:54:16 +01:00
|
|
|
StringRangeGUI *m_antennas;
|
2018-11-05 02:19:40 +01:00
|
|
|
ItemSettingGUI *m_sampleRateGUI;
|
|
|
|
ItemSettingGUI *m_bandwidthGUI;
|
2018-11-05 17:27:32 +01:00
|
|
|
std::vector<DynamicItemSettingGUI*> m_tunableElementsGUIs;
|
2018-11-07 01:33:17 +01:00
|
|
|
IntervalSliderGUI *m_gainSliderGUI;
|
2018-11-07 13:38:42 +01:00
|
|
|
std::vector<DynamicItemSettingGUI*> m_individualGainsGUIs;
|
2018-11-08 01:31:39 +01:00
|
|
|
QCheckBox *m_autoGain;
|
2018-11-08 14:35:26 +01:00
|
|
|
ComplexFactorGUI *m_dcCorrectionGUI;
|
|
|
|
ComplexFactorGUI *m_iqCorrectionGUI;
|
|
|
|
QCheckBox *m_autoDCCorrection;
|
|
|
|
QCheckBox *m_autoIQCorrection;
|
2018-11-11 02:30:10 +01:00
|
|
|
std::vector<DynamicArgSettingGUI*> m_streamArgsGUIs;
|
2018-11-12 01:10:51 +01:00
|
|
|
std::vector<DynamicArgSettingGUI*> m_deviceArgsGUIs;
|
2018-11-01 10:06:27 +01:00
|
|
|
|
2018-11-01 11:43:42 +01:00
|
|
|
void displaySettings();
|
2018-11-06 08:32:47 +01:00
|
|
|
void displayTunableElementsControlSettings();
|
2018-11-07 13:38:42 +01:00
|
|
|
void displayIndividualGainsControlSettings();
|
2018-11-08 16:27:33 +01:00
|
|
|
void displayCorrectionsSettings();
|
2018-11-11 02:30:10 +01:00
|
|
|
void displayStreamArgsSettings();
|
2018-11-12 01:10:51 +01:00
|
|
|
void displayDeviceArgsSettings();
|
2018-11-01 11:43:42 +01:00
|
|
|
void sendSettings();
|
|
|
|
void updateSampleRateAndFrequency();
|
|
|
|
void updateFrequencyLimits();
|
|
|
|
void setCenterFrequencySetting(uint64_t kHzValue);
|
|
|
|
void blockApplySettings(bool block);
|
2020-10-03 19:51:14 +02:00
|
|
|
bool handleMessage(const Message& message);
|
2018-11-01 11:43:42 +01:00
|
|
|
|
2018-11-01 10:06:27 +01:00
|
|
|
private slots:
|
2018-11-02 02:33:04 +01:00
|
|
|
void handleInputMessages();
|
2018-11-04 23:54:16 +01:00
|
|
|
void antennasChanged();
|
2018-11-06 20:19:20 +01:00
|
|
|
void sampleRateChanged(double sampleRate);
|
2018-11-05 02:19:40 +01:00
|
|
|
void bandwidthChanged(double bandwidth);
|
2018-11-06 20:19:20 +01:00
|
|
|
void tunableElementChanged(QString name, double value);
|
2018-11-07 01:33:17 +01:00
|
|
|
void globalGainChanged(double gain);
|
2018-11-08 01:31:39 +01:00
|
|
|
void autoGainChanged(bool set);
|
2018-11-07 13:38:42 +01:00
|
|
|
void individualGainChanged(QString name, double value);
|
2018-11-08 14:35:26 +01:00
|
|
|
void autoDCCorrectionChanged(bool set);
|
|
|
|
void autoIQCorrectionChanged(bool set);
|
|
|
|
void dcCorrectionModuleChanged(double value);
|
|
|
|
void dcCorrectionArgumentChanged(double value);
|
|
|
|
void iqCorrectionModuleChanged(double value);
|
|
|
|
void iqCorrectionArgumentChanged(double value);
|
2018-11-11 02:30:10 +01:00
|
|
|
void streamArgChanged(QString itemName, QVariant value);
|
2018-11-12 01:10:51 +01:00
|
|
|
void deviceArgChanged(QString itemName, QVariant value);
|
2018-11-08 14:35:26 +01:00
|
|
|
|
2018-11-05 02:19:40 +01:00
|
|
|
void on_centerFrequency_changed(quint64 value);
|
|
|
|
void on_LOppm_valueChanged(int value);
|
2018-11-01 11:43:42 +01:00
|
|
|
void on_dcOffset_toggled(bool checked);
|
|
|
|
void on_iqImbalance_toggled(bool checked);
|
|
|
|
void on_decim_currentIndexChanged(int index);
|
|
|
|
void on_fcPos_currentIndexChanged(int index);
|
|
|
|
void on_transverter_clicked();
|
|
|
|
void on_startStop_toggled(bool checked);
|
|
|
|
void updateHardware();
|
|
|
|
void updateStatus();
|
2018-12-26 18:15:43 +01:00
|
|
|
void openDeviceSettingsDialog(const QPoint& p);
|
2018-10-29 16:39:25 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* PLUGINS_SAMPLESOURCE_SOAPYSDRINPUT_SOAPYSDRINPUTGUI_H_ */
|