mirror of
				https://github.com/f4exb/sdrangel.git
				synced 2025-11-03 21:20:31 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			188 lines
		
	
	
		
			6.9 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			188 lines
		
	
	
		
			6.9 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
///////////////////////////////////////////////////////////////////////////////////
 | 
						|
// Copyright (C) 2022-2023 Jon Beniston, M7RCE <jon@beniston.com>                //
 | 
						|
// Copyright (C) 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 INCLUDE_ANDROIDSDRDRIVERINPUTGUI_H
 | 
						|
#define INCLUDE_ANDROIDSDRDRIVERINPUTGUI_H
 | 
						|
 | 
						|
#include <QTimer>
 | 
						|
#include <QElapsedTimer>
 | 
						|
#include <QWidget>
 | 
						|
 | 
						|
#include "device/devicegui.h"
 | 
						|
#include "util/messagequeue.h"
 | 
						|
 | 
						|
#include "androidsdrdriverinput.h"
 | 
						|
#include "../../channelrx/remotetcpsink/remotetcpprotocol.h"
 | 
						|
 | 
						|
class DeviceUISet;
 | 
						|
class QNetworkAccessManager;
 | 
						|
class QNetworkReply;
 | 
						|
class QJsonObject;
 | 
						|
 | 
						|
namespace Ui {
 | 
						|
    class AndroidSDRDriverInputGui;
 | 
						|
}
 | 
						|
 | 
						|
class AndroidSDRDriverInputGui : public DeviceGUI {
 | 
						|
    Q_OBJECT
 | 
						|
 | 
						|
    struct DeviceGains {
 | 
						|
        struct GainRange {
 | 
						|
            QString m_name;
 | 
						|
            int m_min;
 | 
						|
            int m_max;
 | 
						|
            int m_step;                 // In dB
 | 
						|
            QVector<int> m_gains;       // In 10ths of dB
 | 
						|
            QString m_units;            // Units label for display in the GUI
 | 
						|
 | 
						|
            GainRange(const QString& name, int min, int max, int step, const QString& units = "dB") :
 | 
						|
                m_name(name),
 | 
						|
                m_min(min),
 | 
						|
                m_max(max),
 | 
						|
                m_step(step),
 | 
						|
                m_units(units)
 | 
						|
            {
 | 
						|
            }
 | 
						|
 | 
						|
            GainRange(const QString& name, QVector<int> gains, const QString& units = "dB") :
 | 
						|
                m_name(name),
 | 
						|
                m_min(0),
 | 
						|
                m_max(0),
 | 
						|
                m_step(0),
 | 
						|
                m_gains(gains),
 | 
						|
                m_units(units)
 | 
						|
            {
 | 
						|
            }
 | 
						|
        };
 | 
						|
 | 
						|
        DeviceGains()
 | 
						|
        {
 | 
						|
        }
 | 
						|
 | 
						|
        DeviceGains(QList<GainRange> gains, bool agc, bool biasTee) :
 | 
						|
            m_gains(gains),
 | 
						|
            m_agc(agc),
 | 
						|
            m_biasTee(biasTee)
 | 
						|
        {
 | 
						|
        }
 | 
						|
 | 
						|
        QList<GainRange> m_gains;
 | 
						|
        bool m_agc;
 | 
						|
        bool m_biasTee;
 | 
						|
    };
 | 
						|
 | 
						|
public:
 | 
						|
    explicit AndroidSDRDriverInputGui(DeviceUISet *deviceUISet, QWidget* parent = 0);
 | 
						|
    virtual ~AndroidSDRDriverInputGui();
 | 
						|
    virtual void destroy();
 | 
						|
 | 
						|
    void resetToDefaults();
 | 
						|
    QByteArray serialize() const;
 | 
						|
    bool deserialize(const QByteArray& data);
 | 
						|
    virtual MessageQueue *getInputMessageQueue() { return &m_inputMessageQueue; }
 | 
						|
 | 
						|
private:
 | 
						|
    Ui::AndroidSDRDriverInputGui* ui;
 | 
						|
 | 
						|
    AndroidSDRDriverInputSettings m_settings;        //!< current settings
 | 
						|
    QList<QString> m_settingsKeys;
 | 
						|
    AndroidSDRDriverInput* m_sampleSource;
 | 
						|
    QTimer m_updateTimer;
 | 
						|
    QTimer m_statusTimer;
 | 
						|
    int m_lastEngineState;
 | 
						|
    MessageQueue m_inputMessageQueue;
 | 
						|
 | 
						|
    int m_sampleRate;
 | 
						|
    quint64 m_centerFrequency;
 | 
						|
 | 
						|
    bool m_doApplySettings;
 | 
						|
    bool m_forceSettings;
 | 
						|
 | 
						|
    const DeviceGains *m_deviceGains;
 | 
						|
    RemoteTCPProtocol::Device m_remoteDevice;     // Remote device reported when connecting
 | 
						|
    bool m_connectionError;
 | 
						|
 | 
						|
    static const DeviceGains::GainRange m_rtlSDR34kGainRange;
 | 
						|
    static const DeviceGains m_rtlSDRe4kGains;
 | 
						|
    static const DeviceGains::GainRange m_rtlSDRR820GainRange;
 | 
						|
    static const DeviceGains m_rtlSDRR820Gains;
 | 
						|
    static const DeviceGains::GainRange m_airspyLNAGainRange;
 | 
						|
    static const DeviceGains::GainRange m_airspyMixerGainRange;
 | 
						|
    static const DeviceGains::GainRange m_airspyVGAGainRange;
 | 
						|
    static const DeviceGains m_airspyGains;
 | 
						|
    static const DeviceGains::GainRange m_airspyHFAttRange;
 | 
						|
    static const DeviceGains m_airspyHFGains;
 | 
						|
    static const DeviceGains::GainRange m_bladeRF1LNARange;
 | 
						|
    static const DeviceGains::GainRange m_bladeRF1VGA1Range;
 | 
						|
    static const DeviceGains::GainRange m_bladeRF1VGA2Range;
 | 
						|
    static const DeviceGains m_baldeRF1Gains;
 | 
						|
    static const DeviceGains::GainRange m_funCubeProPlusRange;
 | 
						|
    static const DeviceGains m_funCubeProPlusGains;
 | 
						|
    static const DeviceGains::GainRange m_hackRFLNAGainRange;
 | 
						|
    static const DeviceGains::GainRange m_hackRFVGAGainRange;
 | 
						|
    static const DeviceGains m_hackRFGains;
 | 
						|
    static const DeviceGains::GainRange m_kiwiGainRange;
 | 
						|
    static const DeviceGains m_kiwiGains;
 | 
						|
    static const DeviceGains::GainRange m_limeRange;
 | 
						|
    static const DeviceGains m_limeGains;
 | 
						|
    static const DeviceGains::GainRange m_sdrplayV3LNAGainRange;
 | 
						|
    static const DeviceGains::GainRange m_sdrplayV3IFGainRange;
 | 
						|
    static const DeviceGains m_sdrplayV3Gains;
 | 
						|
    static const DeviceGains::GainRange m_plutoGainRange;
 | 
						|
    static const DeviceGains m_plutoGains;
 | 
						|
    static const DeviceGains::GainRange m_usrpGainRange;
 | 
						|
    static const DeviceGains m_usrpGains;
 | 
						|
    static const DeviceGains::GainRange m_xtrxGainRange;
 | 
						|
    static const DeviceGains m_xtrxGains;
 | 
						|
    static const QHash<RemoteTCPProtocol::Device, const DeviceGains *> m_gains;
 | 
						|
 | 
						|
    void blockApplySettings(bool block);
 | 
						|
    void displaySettings();
 | 
						|
    QString gainText(int stage);
 | 
						|
    void displayGains();
 | 
						|
    void displayRemoteSettings();
 | 
						|
    void displayRemoteShift();
 | 
						|
    void sendSettings();
 | 
						|
    void updateSampleRateAndFrequency();
 | 
						|
    void applyPosition();
 | 
						|
    bool handleMessage(const Message& message);
 | 
						|
    void makeUIConnections();
 | 
						|
 | 
						|
private slots:
 | 
						|
    void handleInputMessages();
 | 
						|
    void on_startStop_toggled(bool checked);
 | 
						|
    void on_centerFrequency_changed(quint64 value);
 | 
						|
    void on_ppm_valueChanged(int value);
 | 
						|
    void on_dcOffset_toggled(bool checked);
 | 
						|
    void on_iqImbalance_toggled(bool checked);
 | 
						|
    void on_biasTee_toggled(bool checked);
 | 
						|
    void on_directSampling_toggled(bool checked);
 | 
						|
    void on_devSampleRate_changed(quint64 value);
 | 
						|
    void on_gain1_valueChanged(int value);
 | 
						|
    void on_gain2_valueChanged(int value);
 | 
						|
    void on_agc_toggled(bool checked);
 | 
						|
    void on_rfBW_changed(int value);
 | 
						|
    void on_sampleBits_currentIndexChanged(int index);
 | 
						|
    void on_dataPort_editingFinished();
 | 
						|
    void updateHardware();
 | 
						|
    void updateStatus();
 | 
						|
    void openDeviceSettingsDialog(const QPoint& p);
 | 
						|
};
 | 
						|
 | 
						|
#endif // INCLUDE_ANDROIDSDRDRIVERINPUTGUI_H
 |