2016-06-19 09:56:49 +02:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2016 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 //
|
2019-04-11 06:57:41 +02:00
|
|
|
// (at your option) any later version. //
|
2016-06-19 09:56:49 +02: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/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2019-02-03 00:26:26 +01:00
|
|
|
#ifndef INCLUDE_REMOTEINPUTGUI_H
|
|
|
|
#define INCLUDE_REMOTEINPUTGUI_H
|
2016-06-19 09:56:49 +02:00
|
|
|
|
|
|
|
#include <QTimer>
|
2020-04-19 06:13:32 +02:00
|
|
|
#include <QElapsedTimer>
|
2017-09-03 17:26:32 +02:00
|
|
|
#include <QWidget>
|
2017-09-16 22:23:31 +02:00
|
|
|
|
2020-10-05 19:23:13 +02:00
|
|
|
#include "device/devicegui.h"
|
2017-09-16 22:23:31 +02:00
|
|
|
#include "util/messagequeue.h"
|
|
|
|
|
2019-02-03 00:26:26 +01:00
|
|
|
#include "remoteinput.h"
|
2016-06-19 09:56:49 +02:00
|
|
|
|
2017-10-30 00:02:28 +01:00
|
|
|
class DeviceUISet;
|
2018-09-08 23:30:22 +02:00
|
|
|
class QNetworkAccessManager;
|
|
|
|
class QNetworkReply;
|
|
|
|
class QJsonObject;
|
2016-06-19 09:56:49 +02:00
|
|
|
|
|
|
|
namespace Ui {
|
2019-02-03 00:26:26 +01:00
|
|
|
class RemoteInputGui;
|
2016-06-19 09:56:49 +02:00
|
|
|
}
|
|
|
|
|
2020-10-05 19:23:13 +02:00
|
|
|
class RemoteInputGui : public DeviceGUI {
|
2016-06-19 09:56:49 +02:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2019-02-03 00:26:26 +01:00
|
|
|
explicit RemoteInputGui(DeviceUISet *deviceUISet, QWidget* parent = 0);
|
|
|
|
virtual ~RemoteInputGui();
|
2017-09-16 10:45:08 +02:00
|
|
|
virtual void destroy();
|
2016-06-19 09:56:49 +02:00
|
|
|
|
|
|
|
void resetToDefaults();
|
|
|
|
QByteArray serialize() const;
|
|
|
|
bool deserialize(const QByteArray& data);
|
2017-09-16 22:23:31 +02:00
|
|
|
virtual MessageQueue *getInputMessageQueue() { return &m_inputMessageQueue; }
|
2016-06-19 09:56:49 +02:00
|
|
|
|
|
|
|
private:
|
2019-02-03 00:26:26 +01:00
|
|
|
Ui::RemoteInputGui* ui;
|
2016-06-19 09:56:49 +02:00
|
|
|
|
2017-10-30 00:02:28 +01:00
|
|
|
DeviceUISet* m_deviceUISet;
|
2019-02-03 00:26:26 +01:00
|
|
|
RemoteInputSettings m_settings; //!< current settings
|
2021-12-24 21:06:15 +01:00
|
|
|
RemoteInput::RemoteChannelSettings m_remoteChannelSettings;
|
|
|
|
double m_remoteShiftFrequencyFactor; //!< Remote channel frequency shift factor
|
2019-02-03 00:26:26 +01:00
|
|
|
RemoteInput* m_sampleSource;
|
2017-12-26 02:18:30 +01:00
|
|
|
bool m_acquisition;
|
|
|
|
int m_streamSampleRate; //!< Sample rate of received stream
|
|
|
|
quint64 m_streamCenterFrequency; //!< Center frequency of received stream
|
2016-06-19 09:56:49 +02:00
|
|
|
QTimer m_updateTimer;
|
2021-12-26 11:56:37 +01:00
|
|
|
QTimer m_remoteUpdateTimer;
|
2016-06-19 09:56:49 +02:00
|
|
|
QTimer m_statusTimer;
|
|
|
|
int m_lastEngineState;
|
2017-09-16 22:23:31 +02:00
|
|
|
MessageQueue m_inputMessageQueue;
|
2016-06-19 09:56:49 +02:00
|
|
|
|
2017-12-26 02:18:30 +01:00
|
|
|
// int m_sampleRate;
|
|
|
|
// quint64 m_centerFrequency;
|
2018-11-13 13:45:55 +01:00
|
|
|
uint64_t m_startingTimeStampms;
|
2016-07-24 11:09:11 +02:00
|
|
|
int m_framesDecodingStatus;
|
2016-07-28 04:49:33 +02:00
|
|
|
bool m_allBlocksReceived;
|
2016-06-19 09:56:49 +02:00
|
|
|
float m_bufferLengthInSecs;
|
|
|
|
int32_t m_bufferGauge;
|
2016-07-18 00:39:35 +02:00
|
|
|
int m_minNbBlocks;
|
2016-07-27 18:49:17 +02:00
|
|
|
int m_minNbOriginalBlocks;
|
2016-07-18 00:39:35 +02:00
|
|
|
int m_maxNbRecovery;
|
2016-06-20 01:18:21 +02:00
|
|
|
float m_avgNbBlocks;
|
2016-07-27 18:49:17 +02:00
|
|
|
float m_avgNbOriginalBlocks;
|
2016-06-20 01:18:21 +02:00
|
|
|
float m_avgNbRecovery;
|
2016-07-24 11:09:11 +02:00
|
|
|
int m_nbOriginalBlocks;
|
|
|
|
int m_nbFECBlocks;
|
2018-09-09 17:39:36 +02:00
|
|
|
int m_sampleBits;
|
2018-09-09 21:26:47 +02:00
|
|
|
int m_sampleBytes;
|
2016-06-20 01:18:21 +02:00
|
|
|
|
2016-06-19 09:56:49 +02:00
|
|
|
int m_samplesCount;
|
|
|
|
std::size_t m_tickCount;
|
|
|
|
|
|
|
|
bool m_addressEdited;
|
|
|
|
bool m_dataPortEdited;
|
2017-06-08 15:31:24 +02:00
|
|
|
|
|
|
|
uint32_t m_countUnrecoverable;
|
|
|
|
uint32_t m_countRecovered;
|
2020-04-19 06:13:32 +02:00
|
|
|
QElapsedTimer m_eventsTime;
|
2017-06-08 15:31:24 +02:00
|
|
|
|
|
|
|
bool m_doApplySettings;
|
2017-06-08 02:06:36 +02:00
|
|
|
bool m_forceSettings;
|
2016-06-19 09:56:49 +02:00
|
|
|
|
2016-07-28 05:57:59 +02:00
|
|
|
QPalette m_paletteGreenText;
|
|
|
|
QPalette m_paletteWhiteText;
|
|
|
|
|
2017-06-08 02:06:36 +02:00
|
|
|
void blockApplySettings(bool block);
|
2016-06-19 09:56:49 +02:00
|
|
|
void displaySettings();
|
2021-12-24 21:06:15 +01:00
|
|
|
void displayRemoteSettings();
|
|
|
|
void displayRemoteShift();
|
2016-06-19 09:56:49 +02:00
|
|
|
void displayTime();
|
2021-12-25 12:54:33 +01:00
|
|
|
void displayRemoteFixedData(const RemoteInput::MsgReportRemoteFixedData::RemoteData& remoteData);
|
2017-06-08 02:06:36 +02:00
|
|
|
void sendSettings();
|
2016-06-19 09:56:49 +02:00
|
|
|
void updateWithAcquisition();
|
|
|
|
void updateWithStreamTime();
|
2018-09-08 23:30:22 +02:00
|
|
|
void updateSampleRateAndFrequency();
|
2017-06-08 15:31:24 +02:00
|
|
|
void displayEventCounts();
|
|
|
|
void displayEventTimer();
|
2021-12-24 21:06:15 +01:00
|
|
|
void applyDecimation();
|
|
|
|
void applyPosition();
|
|
|
|
void applyRemoteSettings();
|
2020-10-03 19:51:14 +02:00
|
|
|
bool handleMessage(const Message& message);
|
2016-06-19 09:56:49 +02:00
|
|
|
|
|
|
|
private slots:
|
2017-09-17 01:23:54 +02:00
|
|
|
void handleInputMessages();
|
2021-12-24 21:06:15 +01:00
|
|
|
void on_remoteDeviceFrequency_changed(quint64 value);
|
|
|
|
void on_decimationFactor_currentIndexChanged(int index);
|
|
|
|
void on_position_valueChanged(int value);
|
2018-09-08 23:30:22 +02:00
|
|
|
void on_apiApplyButton_clicked(bool checked);
|
|
|
|
void on_dataApplyButton_clicked(bool checked);
|
2016-06-19 09:56:49 +02:00
|
|
|
void on_dcOffset_toggled(bool checked);
|
|
|
|
void on_iqImbalance_toggled(bool checked);
|
2021-11-02 11:20:30 +00:00
|
|
|
void on_apiAddress_editingFinished();
|
|
|
|
void on_apiPort_editingFinished();
|
|
|
|
void on_dataAddress_editingFinished();
|
|
|
|
void on_dataPort_editingFinished();
|
|
|
|
void on_multicastAddress_editingFinished();
|
2020-08-26 18:52:36 +02:00
|
|
|
void on_multicastJoin_toggled(bool checked);
|
2016-06-19 09:56:49 +02:00
|
|
|
void on_startStop_toggled(bool checked);
|
2017-06-08 15:31:24 +02:00
|
|
|
void on_eventCountsReset_clicked(bool checked);
|
2017-06-08 02:06:36 +02:00
|
|
|
void updateHardware();
|
2021-12-26 11:56:37 +01:00
|
|
|
void updateRemote();
|
2016-06-19 09:56:49 +02:00
|
|
|
void updateStatus();
|
2018-12-26 17:08:21 +01:00
|
|
|
void openDeviceSettingsDialog(const QPoint& p);
|
2016-06-19 09:56:49 +02:00
|
|
|
};
|
|
|
|
|
2019-02-03 00:26:26 +01:00
|
|
|
#endif // INCLUDE_REMOTEINPUTGUI_H
|