1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-03 14:34:57 -04:00

Morse Decoder: added scope from RTTY decoder

This commit is contained in:
f4exb
2024-05-17 18:51:13 +02:00
parent 39bc799509
commit 112cd4cac4
8 changed files with 371 additions and 2 deletions
@@ -27,6 +27,7 @@
#include "feature/feature.h"
#include "util/message.h"
#include "availablechannelorfeaturehandler.h"
#include "dsp/scopevis.h"
#include "morsedecodersettings.h"
@@ -213,6 +214,8 @@ public:
const QStringList& featureSettingsKeys,
SWGSDRangel::SWGFeatureSettings& response);
ScopeVis *getScopeVis() { return &m_scopeVis; }
static const char* const m_featureIdURI;
static const char* const m_featureId;
@@ -222,6 +225,7 @@ private:
bool m_running;
MorseDecoderWorker *m_worker;
MorseDecoderSettings m_settings;
ScopeVis m_scopeVis;
AvailableChannelOrFeatureList m_availableChannels;
AvailableChannelOrFeatureHandler m_availableChannelOrFeatureHandler;
ChannelAPI *m_selectedChannel;