2017-05-14 18:58:56 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
2017-05-21 07:32:56 -04:00
|
|
|
// Copyright (C) 2017 Edouard Griffiths, F4EXB //
|
2017-05-14 18:58:56 -04: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 //
|
|
|
|
// //
|
|
|
|
// 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/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2017-05-21 07:32:56 -04:00
|
|
|
#ifndef INCLUDE_SDRDAEMONSINKGUI_H
|
|
|
|
#define INCLUDE_SDRDAEMONSINKGUI_H
|
2017-05-14 18:58:56 -04:00
|
|
|
|
|
|
|
#include <QTimer>
|
|
|
|
|
|
|
|
#include "plugin/plugingui.h"
|
2017-05-21 07:32:56 -04:00
|
|
|
#include "sdrdaemonsinksettings.h"
|
2017-05-14 18:58:56 -04:00
|
|
|
#include "sdrdaemonsinkoutput.h"
|
|
|
|
|
|
|
|
|
|
|
|
class DeviceSinkAPI;
|
|
|
|
class DeviceSampleSink;
|
|
|
|
|
|
|
|
namespace Ui {
|
2017-05-21 07:32:56 -04:00
|
|
|
class SDRdaemonSinkGui;
|
2017-05-14 18:58:56 -04:00
|
|
|
}
|
|
|
|
|
2017-05-21 07:32:56 -04:00
|
|
|
class SDRdaemonSinkGui : public QWidget, public PluginGUI {
|
2017-05-14 18:58:56 -04:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2017-05-21 07:32:56 -04:00
|
|
|
explicit SDRdaemonSinkGui(DeviceSinkAPI *deviceAPI, QWidget* parent = NULL);
|
|
|
|
virtual ~SDRdaemonSinkGui();
|
2017-05-14 18:58:56 -04:00
|
|
|
void destroy();
|
|
|
|
|
|
|
|
void setName(const QString& name);
|
|
|
|
QString getName() const;
|
|
|
|
|
|
|
|
void resetToDefaults();
|
|
|
|
virtual qint64 getCenterFrequency() const;
|
|
|
|
virtual void setCenterFrequency(qint64 centerFrequency);
|
|
|
|
QByteArray serialize() const;
|
|
|
|
bool deserialize(const QByteArray& data);
|
|
|
|
virtual bool handleMessage(const Message& message);
|
|
|
|
|
|
|
|
private:
|
2017-05-21 07:32:56 -04:00
|
|
|
Ui::SDRdaemonSinkGui* ui;
|
2017-05-14 18:58:56 -04:00
|
|
|
|
|
|
|
DeviceSinkAPI* m_deviceAPI;
|
2017-05-21 13:45:56 -04:00
|
|
|
SDRdaemonSinkSettings m_settings; //!< current settings
|
|
|
|
SDRdaemonSinkSettings m_controlSettings; //!< settings last sent to device via control port
|
2017-05-14 18:58:56 -04:00
|
|
|
QTimer m_updateTimer;
|
|
|
|
QTimer m_statusTimer;
|
|
|
|
DeviceSampleSink* m_deviceSampleSink;
|
|
|
|
int m_sampleRate;
|
|
|
|
quint64 m_deviceCenterFrequency; //!< Center frequency in device
|
|
|
|
int m_samplesCount;
|
|
|
|
std::size_t m_tickCount;
|
|
|
|
int m_lastEngineState;
|
2017-05-21 13:45:56 -04:00
|
|
|
bool m_doApplySettings;
|
2017-05-14 18:58:56 -04:00
|
|
|
|
2017-05-21 13:45:56 -04:00
|
|
|
int m_nnSender;
|
|
|
|
|
|
|
|
void blockApplySettings(bool block);
|
2017-05-14 18:58:56 -04:00
|
|
|
void displaySettings();
|
|
|
|
void displayTime();
|
2017-05-21 13:45:56 -04:00
|
|
|
void sendControl(bool force = false);
|
2017-05-14 18:58:56 -04:00
|
|
|
void sendSettings();
|
|
|
|
void updateWithStreamTime();
|
|
|
|
void updateSampleRateAndFrequency();
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void handleDSPMessages();
|
|
|
|
void handleSinkMessages();
|
|
|
|
void on_centerFrequency_changed(quint64 value);
|
|
|
|
void on_sampleRate_changed(quint64 value);
|
2017-05-21 13:45:56 -04:00
|
|
|
void on_interp_currentIndexChanged(int index);
|
|
|
|
void on_txDelay_valueChanged(int value);
|
2017-05-21 07:32:56 -04:00
|
|
|
void on_nbFECBlocks_valueChanged(int value);
|
2017-05-21 18:04:54 -04:00
|
|
|
void on_address_returnPressed();
|
|
|
|
void on_dataPort_returnPressed();
|
|
|
|
void on_controlPort_returnPressed();
|
|
|
|
void on_specificParms_returnPressed();
|
2017-05-21 13:45:56 -04:00
|
|
|
void on_applyButton_clicked(bool checked);
|
|
|
|
void on_sendButton_clicked(bool checked);
|
|
|
|
void on_startStop_toggled(bool checked);
|
2017-05-14 18:58:56 -04:00
|
|
|
void updateHardware();
|
|
|
|
void updateStatus();
|
|
|
|
void tick();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // INCLUDE_FILESINKGUI_H
|