mirror of
https://github.com/cjcliffe/CubicSDR.git
synced 2026-08-27 14:26:13 -04:00
Allow modems to limit/control input rate
- Modems can now over-ride user rate input and lock/step as needed - Separate digital code defs a bit more so it’s not required when disabled - Testing FSK based on @andresv ’s example at https://github.com/jgaeddert/liquid-dsp/issues/9
This commit is contained in:
+4
-1
@@ -172,17 +172,20 @@ bool CubicSDR::OnInit() {
|
||||
Modem::addModemFactory(new ModemDSB);
|
||||
Modem::addModemFactory(new ModemIQ);
|
||||
|
||||
#ifdef ENABLE_DIGITAL_LAB
|
||||
Modem::addModemFactory(new ModemAPSK);
|
||||
Modem::addModemFactory(new ModemASK);
|
||||
Modem::addModemFactory(new ModemBPSK);
|
||||
Modem::addModemFactory(new ModemDPSK);
|
||||
Modem::addModemFactory(new ModemFSK);
|
||||
Modem::addModemFactory(new ModemOOK);
|
||||
Modem::addModemFactory(new ModemPSK);
|
||||
Modem::addModemFactory(new ModemQAM);
|
||||
Modem::addModemFactory(new ModemQPSK);
|
||||
Modem::addModemFactory(new ModemSQAM);
|
||||
Modem::addModemFactory(new ModemST);
|
||||
|
||||
#endif
|
||||
|
||||
frequency = wxGetApp().getConfig()->getCenterFreq();
|
||||
offset = 0;
|
||||
ppm = 0;
|
||||
|
||||
Reference in New Issue
Block a user