1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2025-11-10 08:10:25 -05:00

124 lines
4.6 KiB
C
Raw Normal View History

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
#include <plugin/plugininstancegui.h>
2015-01-11 00:12:58 +00:00
#include "gui/rollupwidget.h"
#include "dsp/channelmarker.h"
#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;
class DeviceUISet;
2020-03-03 21:52:46 +01:00
class ChirpChatDemod;
2015-01-11 00:12:58 +00:00
class SpectrumVis;
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);
virtual void destroy();
2015-01-11 00:12:58 +00:00
void setName(const QString& name);
QString getName() const;
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);
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);
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);
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();
void tick();
2015-01-11 00:12:58 +00:00
private:
2020-03-03 21:52:46 +01:00
enum ParityStatus // matches decoder status
{
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;
DeviceUISet* m_deviceUISet;
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;
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;
MessageQueue m_inputMessageQueue;
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
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();
void displaySquelch();
2020-02-08 18:21:38 +01:00
void setBandwidths();
void showLoRaMessage(const Message& message);
void showTextMessage(const Message& message); //!< For TTY and ASCII
void displayText(const QString& text);
void displayBytes(const QByteArray& bytes);
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