mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-03 15:31:15 -05:00
145 lines
4.6 KiB
C++
145 lines
4.6 KiB
C++
///////////////////////////////////////////////////////////////////////////////////
|
|
// Copyright (C) 2016 F4EXB //
|
|
// written by Edouard Griffiths //
|
|
// //
|
|
// 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/>. //
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef INCLUDE_DSDDEMODGUI_H
|
|
#define INCLUDE_DSDDEMODGUI_H
|
|
|
|
#include "gui/rollupwidget.h"
|
|
#include "plugin/plugingui.h"
|
|
#include "dsp/dsptypes.h"
|
|
#include "dsp/channelmarker.h"
|
|
#include "dsp/movingaverage.h"
|
|
|
|
class PluginAPI;
|
|
class DeviceSourceAPI;
|
|
|
|
class ThreadedBasebandSampleSink;
|
|
class DownChannelizer;
|
|
class ScopeVis;
|
|
class DSDDemod;
|
|
|
|
namespace Ui {
|
|
class DSDDemodGUI;
|
|
}
|
|
|
|
class DSDDemodGUI : public RollupWidget, public PluginGUI {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
static DSDDemodGUI* create(PluginAPI* pluginAPI, DeviceSourceAPI *deviceAPI);
|
|
void destroy();
|
|
|
|
void setName(const QString& name);
|
|
QString getName() const;
|
|
virtual qint64 getCenterFrequency() const;
|
|
virtual void setCenterFrequency(qint64 centerFrequency);
|
|
|
|
void resetToDefaults();
|
|
QByteArray serialize() const;
|
|
bool deserialize(const QByteArray& data);
|
|
|
|
virtual bool handleMessage(const Message& message);
|
|
|
|
static const QString m_channelID;
|
|
|
|
private slots:
|
|
void viewChanged();
|
|
void formatStatusText();
|
|
void on_deltaFrequency_changed(quint64 value);
|
|
void on_deltaMinus_toggled(bool minus);
|
|
void on_rfBW_valueChanged(int index);
|
|
void on_demodGain_valueChanged(int value);
|
|
void on_volume_valueChanged(int value);
|
|
void on_baudRate_currentIndexChanged(int index);
|
|
void on_enableCosineFiltering_toggled(bool enable);
|
|
void on_syncOrConstellation_toggled(bool checked);
|
|
void on_slot1On_toggled(bool checked);
|
|
void on_slot2On_toggled(bool checked);
|
|
void on_tdmaStereoSplit_toggled(bool checked);
|
|
void on_fmDeviation_valueChanged(int value);
|
|
void on_squelchGate_valueChanged(int value);
|
|
void on_squelch_valueChanged(int value);
|
|
void on_audioMute_toggled(bool checked);
|
|
void onWidgetRolled(QWidget* widget, bool rollDown);
|
|
void onMenuDoubleClicked();
|
|
void tick();
|
|
|
|
private:
|
|
typedef enum
|
|
{
|
|
signalFormatNone,
|
|
signalFormatDMR,
|
|
signalFormatDStar,
|
|
signalFormatDPMR,
|
|
signalFormatYSF
|
|
} SignalFormat;
|
|
|
|
Ui::DSDDemodGUI* ui;
|
|
PluginAPI* m_pluginAPI;
|
|
DeviceSourceAPI* m_deviceAPI;
|
|
ChannelMarker m_channelMarker;
|
|
bool m_basicSettingsShown;
|
|
bool m_doApplySettings;
|
|
char m_formatStatusText[82+1]; //!< Fixed signal format dependent status text
|
|
SignalFormat m_signalFormat;
|
|
|
|
ThreadedBasebandSampleSink* m_threadedChannelizer;
|
|
DownChannelizer* m_channelizer;
|
|
ScopeVis* m_scopeVis;
|
|
|
|
DSDDemod* m_dsdDemod;
|
|
bool m_enableCosineFiltering;
|
|
bool m_syncOrConstellation;
|
|
bool m_slot1On;
|
|
bool m_slot2On;
|
|
bool m_tdmaStereo;
|
|
bool m_audioMute;
|
|
bool m_squelchOpen;
|
|
MovingAverage<Real> m_channelPowerDbAvg;
|
|
int m_tickCount;
|
|
|
|
float m_myLatitude;
|
|
float m_myLongitude;
|
|
|
|
|
|
explicit DSDDemodGUI(PluginAPI* pluginAPI, DeviceSourceAPI *deviceAPI, QWidget* parent = NULL);
|
|
virtual ~DSDDemodGUI();
|
|
|
|
void blockApplySettings(bool block);
|
|
void applySettings();
|
|
void updateMyPosition();
|
|
|
|
void leaveEvent(QEvent*);
|
|
void enterEvent(QEvent*);
|
|
};
|
|
|
|
class DSDDemodBaudRates
|
|
{
|
|
public:
|
|
static unsigned int getRate(unsigned int rate_index);
|
|
static unsigned int getRateIndex(unsigned int rate);
|
|
static unsigned int getDefaultRate() { return m_rates[m_defaultRateIndex]; }
|
|
static unsigned int getDefaultRateIndex() { return m_defaultRateIndex; }
|
|
static unsigned int getNbRates();
|
|
private:
|
|
static unsigned int m_nb_rates;
|
|
static unsigned int m_rates[2];
|
|
static unsigned int m_defaultRateIndex;
|
|
};
|
|
|
|
#endif // INCLUDE_DSDDEMODGUI_H
|