2020-02-08 18:21:38 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
// Copyright (C) 2019-2020 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 //
|
|
|
|
|
// (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/>. //
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
2020-03-03 21:52:46 +01:00
|
|
|
#ifndef INCLUDE_CHIRPCHATDEMODGUI_H
|
|
|
|
|
#define INCLUDE_CHIRPCHATDEMODGUI_H
|
2015-01-11 00:12:58 +00:00
|
|
|
|
2017-09-26 00:22:08 +02:00
|
|
|
#include <plugin/plugininstancegui.h>
|
2015-01-11 00:12:58 +00:00
|
|
|
#include "gui/rollupwidget.h"
|
2015-08-24 23:56:12 +02:00
|
|
|
#include "dsp/channelmarker.h"
|
2017-09-16 22:23:31 +02:00
|
|
|
#include "util/messagequeue.h"
|
2015-01-11 00:12:58 +00:00
|
|
|
|
2020-03-03 21:52:46 +01:00
|
|
|
#include "chirpchatdemodsettings.h"
|
2015-02-20 08:45:57 +00:00
|
|
|
|
2015-01-11 00:12:58 +00:00
|
|
|
class PluginAPI;
|
2017-10-31 08:24:05 +01:00
|
|
|
class DeviceUISet;
|
2020-03-03 21:52:46 +01:00
|
|
|
class ChirpChatDemod;
|
2015-01-11 00:12:58 +00:00
|
|
|
class SpectrumVis;
|
2017-11-09 01:03:05 +01:00
|
|
|
class BasebandSampleSink;
|
2015-01-11 00:12:58 +00:00
|
|
|
|
|
|
|
|
namespace Ui {
|
2020-03-03 21:52:46 +01:00
|
|
|
class ChirpChatDemodGUI;
|
2015-01-11 00:12:58 +00:00
|
|
|
}
|
|
|
|
|
|
2020-03-03 21:52:46 +01:00
|
|
|
class ChirpChatDemodGUI : public RollupWidget, public PluginInstanceGUI {
|
2015-01-11 00:12:58 +00:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
2020-03-03 21:52:46 +01:00
|
|
|
static ChirpChatDemodGUI* create(PluginAPI* pluginAPI, DeviceUISet *deviceAPI, BasebandSampleSink *rxChannel);
|
2017-09-16 10:45:08 +02:00
|
|
|
virtual void destroy();
|
2015-01-11 00:12:58 +00:00
|
|
|
|
|
|
|
|
void setName(const QString& name);
|
2015-06-07 03:30:28 +02:00
|
|
|
QString getName() const;
|
2015-09-29 03:35:14 +02:00
|
|
|
virtual qint64 getCenterFrequency() const;
|
|
|
|
|
virtual void setCenterFrequency(qint64 centerFrequency);
|
2015-01-11 00:12:58 +00: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; }
|
2015-08-17 08:29:34 +02:00
|
|
|
virtual bool handleMessage(const Message& message);
|
2015-01-11 00:12:58 +00:00
|
|
|
|
|
|
|
|
private slots:
|
2020-02-08 18:21:38 +01:00
|
|
|
void channelMarkerChangedByCursor();
|
|
|
|
|
void on_deltaFrequency_changed(qint64 value);
|
2015-01-11 00:12:58 +00:00
|
|
|
void on_BW_valueChanged(int value);
|
2015-01-12 14:25:16 +00:00
|
|
|
void on_Spread_valueChanged(int value);
|
2020-02-08 18:21:38 +01:00
|
|
|
void on_deBits_valueChanged(int value);
|
2020-02-19 09:26:42 +01:00
|
|
|
void on_preambleChirps_valueChanged(int value);
|
2020-02-16 11:26:18 +01:00
|
|
|
void on_scheme_currentIndexChanged(int index);
|
|
|
|
|
void on_mute_toggled(bool checked);
|
|
|
|
|
void on_clear_clicked(bool checked);
|
|
|
|
|
void on_eomSquelch_valueChanged(int value);
|
|
|
|
|
void on_messageLength_valueChanged(int value);
|
2020-02-25 23:41:07 +01:00
|
|
|
void on_messageLengthAuto_stateChanged(int state);
|
2020-02-19 09:26:42 +01:00
|
|
|
void on_header_stateChanged(int state);
|
|
|
|
|
void on_fecParity_valueChanged(int value);
|
|
|
|
|
void on_crc_stateChanged(int state);
|
|
|
|
|
void on_packetLength_valueChanged(int value);
|
2020-02-24 18:55:36 +01:00
|
|
|
void on_udpSend_stateChanged(int state);
|
|
|
|
|
void on_udpAddress_editingFinished();
|
|
|
|
|
void on_udpPort_editingFinished();
|
2015-01-11 00:12:58 +00:00
|
|
|
void onWidgetRolled(QWidget* widget, bool rollDown);
|
2020-02-25 23:41:07 +01:00
|
|
|
void onMenuDialogCalled(const QPoint& p);
|
2020-02-08 18:21:38 +01:00
|
|
|
void channelMarkerHighlightedByCursor();
|
|
|
|
|
void handleInputMessages();
|
2020-02-16 11:26:18 +01:00
|
|
|
void tick();
|
2015-01-11 00:12:58 +00:00
|
|
|
|
|
|
|
|
private:
|
2020-03-03 21:52:46 +01:00
|
|
|
enum ParityStatus // matches decoder status
|
2020-02-21 02:18:36 +01:00
|
|
|
{
|
|
|
|
|
ParityUndefined,
|
|
|
|
|
ParityError,
|
|
|
|
|
ParityCorrected,
|
|
|
|
|
ParityOK
|
|
|
|
|
};
|
|
|
|
|
|
2020-03-03 21:52:46 +01:00
|
|
|
Ui::ChirpChatDemodGUI* ui;
|
2015-01-11 00:12:58 +00:00
|
|
|
PluginAPI* m_pluginAPI;
|
2017-10-31 08:24:05 +01:00
|
|
|
DeviceUISet* m_deviceUISet;
|
2015-08-24 23:56:12 +02:00
|
|
|
ChannelMarker m_channelMarker;
|
2020-03-03 21:52:46 +01:00
|
|
|
ChirpChatDemodSettings m_settings;
|
2020-02-08 18:21:38 +01:00
|
|
|
int m_basebandSampleRate;
|
2015-08-19 01:02:52 +02:00
|
|
|
bool m_doApplySettings;
|
2015-01-11 00:12:58 +00:00
|
|
|
|
2020-03-03 21:52:46 +01:00
|
|
|
ChirpChatDemod* m_chirpChatDemod;
|
2015-01-11 00:12:58 +00:00
|
|
|
SpectrumVis* m_spectrumVis;
|
2017-09-16 22:23:31 +02:00
|
|
|
MessageQueue m_inputMessageQueue;
|
2020-02-16 11:26:18 +01:00
|
|
|
unsigned int m_tickCount;
|
2015-01-11 00:12:58 +00:00
|
|
|
|
2020-03-03 21:52:46 +01:00
|
|
|
explicit ChirpChatDemodGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel, QWidget* parent = 0);
|
|
|
|
|
virtual ~ChirpChatDemodGUI();
|
2015-01-11 00:12:58 +00:00
|
|
|
|
2015-08-19 01:02:52 +02:00
|
|
|
void blockApplySettings(bool block);
|
2017-10-08 00:28:42 +02:00
|
|
|
void applySettings(bool force = false);
|
|
|
|
|
void displaySettings();
|
2020-02-25 23:41:07 +01:00
|
|
|
void displayStreamIndex();
|
2020-02-16 11:26:18 +01:00
|
|
|
void displaySquelch();
|
2020-02-08 18:21:38 +01:00
|
|
|
void setBandwidths();
|
2020-02-21 02:18:36 +01:00
|
|
|
void showLoRaMessage(const Message& message);
|
|
|
|
|
void showTextMessage(const Message& message); //!< For TTY and ASCII
|
2020-03-05 07:12:41 +01:00
|
|
|
void displayText(const QString& text);
|
|
|
|
|
void displayBytes(const QByteArray& bytes);
|
2020-02-21 02:18:36 +01:00
|
|
|
void displayStatus(const QString& status);
|
|
|
|
|
void displayLoRaStatus(int headerParityStatus, bool headerCRCStatus, int payloadParityStatus, bool payloadCRCStatus);
|
|
|
|
|
QString getParityStr(int parityStatus);
|
2020-02-19 09:26:42 +01:00
|
|
|
void resetLoRaStatus();
|
2015-01-11 00:12:58 +00:00
|
|
|
};
|
|
|
|
|
|
2020-03-03 21:52:46 +01:00
|
|
|
#endif // INCLUDE_CHIRPCHATDEMODGUI_H
|