2016-05-11 17:35:16 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2015 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/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2015-09-03 22:10:38 -04:00
|
|
|
#ifndef INCLUDE_FCDPROGUI_H
|
|
|
|
#define INCLUDE_FCDPROGUI_H
|
2015-09-02 21:57:54 -04:00
|
|
|
|
2017-09-03 13:55:00 -04:00
|
|
|
#include <plugin/plugininstanceui.h>
|
2015-09-02 21:57:54 -04:00
|
|
|
#include <QTimer>
|
2017-09-03 11:26:32 -04:00
|
|
|
#include <QWidget>
|
2015-09-03 22:10:38 -04:00
|
|
|
|
|
|
|
#include "fcdproinput.h"
|
2015-09-02 21:57:54 -04:00
|
|
|
|
2016-10-10 19:17:55 -04:00
|
|
|
class DeviceSourceAPI;
|
2016-05-17 13:26:23 -04:00
|
|
|
class QWidget;
|
2015-09-02 21:57:54 -04:00
|
|
|
|
|
|
|
namespace Ui {
|
2015-09-03 22:10:38 -04:00
|
|
|
class FCDProGui;
|
2015-09-02 21:57:54 -04:00
|
|
|
}
|
|
|
|
|
2017-09-03 13:55:00 -04:00
|
|
|
class FCDProGui : public QWidget, public PluginInstanceUI {
|
2015-09-02 21:57:54 -04:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2016-10-10 19:17:55 -04:00
|
|
|
explicit FCDProGui(DeviceSourceAPI *deviceAPI, QWidget* parent = NULL);
|
2015-09-03 22:10:38 -04:00
|
|
|
virtual ~FCDProGui();
|
2017-09-16 04:45:08 -04:00
|
|
|
virtual void destroy();
|
2015-09-02 21:57:54 -04:00
|
|
|
|
|
|
|
void setName(const QString& name);
|
|
|
|
QString getName() const;
|
|
|
|
|
|
|
|
void resetToDefaults();
|
2015-09-28 21:35:14 -04:00
|
|
|
virtual qint64 getCenterFrequency() const;
|
|
|
|
virtual void setCenterFrequency(qint64 centerFrequency);
|
2015-09-02 21:57:54 -04:00
|
|
|
QByteArray serialize() const;
|
|
|
|
bool deserialize(const QByteArray& data);
|
|
|
|
|
|
|
|
virtual bool handleMessage(const Message& message);
|
|
|
|
|
|
|
|
private:
|
2015-09-03 22:10:38 -04:00
|
|
|
Ui::FCDProGui* ui;
|
2015-09-02 21:57:54 -04:00
|
|
|
|
2016-10-10 19:17:55 -04:00
|
|
|
DeviceSourceAPI* m_deviceAPI;
|
2015-09-29 23:38:58 -04:00
|
|
|
FCDProSettings m_settings;
|
2015-09-02 21:57:54 -04:00
|
|
|
QTimer m_updateTimer;
|
2016-05-11 17:35:16 -04:00
|
|
|
QTimer m_statusTimer;
|
2015-09-02 21:57:54 -04:00
|
|
|
std::vector<int> m_gains;
|
2016-10-02 17:16:40 -04:00
|
|
|
DeviceSampleSource* m_sampleSource;
|
2016-05-12 11:40:26 -04:00
|
|
|
int m_sampleRate;
|
|
|
|
quint64 m_deviceCenterFrequency; //!< Center frequency in device
|
2016-05-11 17:35:16 -04:00
|
|
|
int m_lastEngineState;
|
2015-09-02 21:57:54 -04:00
|
|
|
|
|
|
|
void displaySettings();
|
|
|
|
void sendSettings();
|
2016-05-12 11:40:26 -04:00
|
|
|
void updateSampleRateAndFrequency();
|
2015-09-02 21:57:54 -04:00
|
|
|
|
|
|
|
private slots:
|
2016-05-12 11:40:26 -04:00
|
|
|
void handleDSPMessages();
|
2015-09-02 21:57:54 -04:00
|
|
|
void on_centerFrequency_changed(quint64 value);
|
2015-09-06 22:55:55 -04:00
|
|
|
void on_ppm_valueChanged(int value);
|
2015-09-29 23:38:58 -04:00
|
|
|
void on_dcOffset_toggled(bool checked);
|
|
|
|
void on_iqImbalance_toggled(bool checked);
|
2015-09-06 22:55:55 -04:00
|
|
|
// TOOD: defaults push button
|
|
|
|
void on_lnaGain_currentIndexChanged(int index);
|
|
|
|
void on_rfFilter_currentIndexChanged(int index);
|
|
|
|
void on_lnaEnhance_currentIndexChanged(int index);
|
|
|
|
void on_band_currentIndexChanged(int index);
|
|
|
|
void on_mixGain_currentIndexChanged(int index);
|
|
|
|
void on_mixFilter_currentIndexChanged(int index);
|
|
|
|
void on_bias_currentIndexChanged(int index);
|
|
|
|
void on_mode_currentIndexChanged(int index);
|
|
|
|
void on_gain1_currentIndexChanged(int index);
|
|
|
|
void on_rcFilter_currentIndexChanged(int index);
|
|
|
|
void on_gain2_currentIndexChanged(int index);
|
|
|
|
void on_gain3_currentIndexChanged(int index);
|
|
|
|
void on_gain4_currentIndexChanged(int index);
|
|
|
|
void on_ifFilter_currentIndexChanged(int index);
|
|
|
|
void on_gain5_currentIndexChanged(int index);
|
|
|
|
void on_gain6_currentIndexChanged(int index);
|
2015-09-07 19:27:18 -04:00
|
|
|
void on_setDefaults_clicked(bool checked);
|
2016-05-11 17:35:16 -04:00
|
|
|
void on_startStop_toggled(bool checked);
|
2016-05-12 11:40:26 -04:00
|
|
|
void on_record_toggled(bool checked);
|
2015-09-02 21:57:54 -04:00
|
|
|
void updateHardware();
|
2016-05-11 17:35:16 -04:00
|
|
|
void updateStatus();
|
2015-09-02 21:57:54 -04:00
|
|
|
};
|
|
|
|
|
2015-09-03 22:10:38 -04:00
|
|
|
#endif // INCLUDE_FCDPROGUI_H
|