mirror of
https://github.com/cjcliffe/CubicSDR.git
synced 2026-06-01 21:54:39 -04:00
Added ModemCW
This commit is contained in:
+1
-1
@@ -798,7 +798,7 @@ WaterfallCanvas *AppFrame::makeWaterfallCanvas(wxWindow *parent, const wxGLAttri
|
||||
}
|
||||
|
||||
ModeSelectorCanvas *AppFrame::makeModemSelectorPanel(wxWindow *parent, const wxGLAttributes &attribList) {
|
||||
vector<string> modemList = {"FM", "FMS", "NBFM", "AM", "LSB", "USB", "DSB", "I/Q" };
|
||||
vector<string> modemList = {"FM", "FMS", "NBFM", "AM", "CW", "LSB", "USB", "DSB", "I/Q" };
|
||||
|
||||
#ifdef CUBICSDR_MODEM_EXCLUDE
|
||||
std::string excludeListStr = "" CUBICSDR_MODEM_EXCLUDE;
|
||||
|
||||
@@ -306,6 +306,7 @@ bool CubicSDR::OnInit() {
|
||||
Modem::addModemFactory(ModemNBFM::factory, "NBFM", 12500);
|
||||
Modem::addModemFactory(ModemFMStereo::factory, "FMS", 200000);
|
||||
Modem::addModemFactory(ModemAM::factory, "AM", 6000);
|
||||
Modem::addModemFactory(ModemCW::factory, "CW", 500);
|
||||
Modem::addModemFactory(ModemLSB::factory, "LSB", 5400);
|
||||
Modem::addModemFactory(ModemUSB::factory, "USB", 5400);
|
||||
Modem::addModemFactory(ModemDSB::factory, "DSB", 5400);
|
||||
|
||||
@@ -34,6 +34,7 @@
|
||||
#include "ModemFM.h"
|
||||
#include "ModemNBFM.h"
|
||||
#include "ModemFMStereo.h"
|
||||
#include "ModemCW.h"
|
||||
#include "ModemAM.h"
|
||||
#include "ModemUSB.h"
|
||||
#include "ModemLSB.h"
|
||||
|
||||
Reference in New Issue
Block a user