2018-10-29 11:39:25 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2018 Edouard Griffiths, F4EXB //
|
|
|
|
// //
|
|
|
|
// 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 //
|
|
|
|
// //
|
|
|
|
// 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>
|
2018-11-04 17:54:16 -05:00
|
|
|
#include <QComboBox>
|
2018-10-29 11:39:25 -04:00
|
|
|
|
|
|
|
#include "plugin/plugininstancegui.h"
|
|
|
|
#include "util/messagequeue.h"
|
2018-11-05 11:27:32 -05:00
|
|
|
|
2018-10-29 11:39:25 -04:00
|
|
|
#include "soapysdrinput.h"
|
|
|
|
|
|
|
|
class DeviceUISet;
|
2018-11-01 05:06:27 -04:00
|
|
|
class ItemSettingGUI;
|
2018-11-04 20:19:40 -05:00
|
|
|
class StringRangeGUI;
|
2018-11-05 11:27:32 -05:00
|
|
|
class DynamicItemSettingGUI;
|
2018-11-06 19:33:17 -05:00
|
|
|
class IntervalSliderGUI;
|
2018-10-29 11:39:25 -04:00
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class SoapySDRInputGui;
|
|
|
|
}
|
|
|
|
|
|
|
|
class SoapySDRInputGui : public QWidget, public PluginInstanceGUI {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit SoapySDRInputGui(DeviceUISet *deviceUISet, QWidget* parent = 0);
|
|
|
|
virtual ~SoapySDRInputGui();
|
|
|
|
virtual void destroy();
|
|
|
|
|
|
|
|
void setName(const QString& name);
|
|
|
|
QString getName() const;
|
|
|
|
|
|
|
|
virtual void resetToDefaults();
|
|
|
|
virtual qint64 getCenterFrequency() const;
|
|
|
|
virtual void setCenterFrequency(qint64 centerFrequency);
|
|
|
|
virtual QByteArray serialize() const;
|
|
|
|
virtual bool deserialize(const QByteArray& data);
|
|
|
|
virtual MessageQueue *getInputMessageQueue() { return &m_inputMessageQueue; }
|
|
|
|
virtual bool handleMessage(const Message& message);
|
|
|
|
|
|
|
|
private:
|
2018-11-04 20:19:40 -05:00
|
|
|
void createRangesControl(
|
|
|
|
ItemSettingGUI **settingGUI,
|
|
|
|
const SoapySDR::RangeList& rangeList,
|
|
|
|
const QString& text,
|
|
|
|
const QString& unit);
|
2018-11-04 17:54:16 -05:00
|
|
|
void createAntennasControl(const std::vector<std::string>& antennaList);
|
2018-11-05 11:27:32 -05:00
|
|
|
void createTunableElementsControl(const std::vector<DeviceSoapySDRParams::FrequencySetting>& tunableElementsList);
|
2018-11-06 19:33:17 -05:00
|
|
|
void createGlobalGainControl();
|
2018-11-07 07:38:42 -05:00
|
|
|
void createIndividualGainsControl(const std::vector<DeviceSoapySDRParams::GainSetting>& individualGainsList);
|
2018-11-04 17:54:16 -05:00
|
|
|
|
2018-10-29 11:39:25 -04:00
|
|
|
Ui::SoapySDRInputGui* ui;
|
|
|
|
|
|
|
|
DeviceUISet* m_deviceUISet;
|
|
|
|
bool m_forceSettings;
|
|
|
|
bool m_doApplySettings;
|
2018-11-01 06:43:42 -04:00
|
|
|
SoapySDRInputSettings m_settings;
|
2018-10-29 11:39:25 -04: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 05:06:27 -04:00
|
|
|
|
2018-11-04 17:54:16 -05:00
|
|
|
StringRangeGUI *m_antennas;
|
2018-11-04 20:19:40 -05:00
|
|
|
ItemSettingGUI *m_sampleRateGUI;
|
|
|
|
ItemSettingGUI *m_bandwidthGUI;
|
2018-11-05 11:27:32 -05:00
|
|
|
std::vector<DynamicItemSettingGUI*> m_tunableElementsGUIs;
|
2018-11-06 19:33:17 -05:00
|
|
|
IntervalSliderGUI *m_gainSliderGUI;
|
2018-11-07 07:38:42 -05:00
|
|
|
std::vector<DynamicItemSettingGUI*> m_individualGainsGUIs;
|
2018-11-01 05:06:27 -04:00
|
|
|
|
2018-11-01 06:43:42 -04:00
|
|
|
void displaySettings();
|
2018-11-06 02:32:47 -05:00
|
|
|
void displayTunableElementsControlSettings();
|
2018-11-07 07:38:42 -05:00
|
|
|
void displayIndividualGainsControlSettings();
|
2018-11-01 06:43:42 -04:00
|
|
|
void sendSettings();
|
|
|
|
void updateSampleRateAndFrequency();
|
|
|
|
void updateFrequencyLimits();
|
|
|
|
void setCenterFrequencySetting(uint64_t kHzValue);
|
|
|
|
void blockApplySettings(bool block);
|
|
|
|
|
2018-11-01 05:06:27 -04:00
|
|
|
private slots:
|
2018-11-01 21:33:04 -04:00
|
|
|
void handleInputMessages();
|
2018-11-04 17:54:16 -05:00
|
|
|
void antennasChanged();
|
2018-11-06 14:19:20 -05:00
|
|
|
void sampleRateChanged(double sampleRate);
|
2018-11-04 20:19:40 -05:00
|
|
|
void bandwidthChanged(double bandwidth);
|
2018-11-06 14:19:20 -05:00
|
|
|
void tunableElementChanged(QString name, double value);
|
2018-11-06 19:33:17 -05:00
|
|
|
void globalGainChanged(double gain);
|
2018-11-07 07:38:42 -05:00
|
|
|
void individualGainChanged(QString name, double value);
|
2018-11-04 20:19:40 -05:00
|
|
|
void on_centerFrequency_changed(quint64 value);
|
|
|
|
void on_LOppm_valueChanged(int value);
|
2018-11-01 06:43:42 -04: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 on_record_toggled(bool checked);
|
|
|
|
void updateHardware();
|
|
|
|
void updateStatus();
|
2018-10-29 11:39:25 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* PLUGINS_SAMPLESOURCE_SOAPYSDRINPUT_SOAPYSDRINPUTGUI_H_ */
|