re-add m17

This commit is contained in:
Jakob Ketterl
2021-09-07 14:45:52 +02:00
parent f9f0bdde12
commit f3b05c6318
6 changed files with 98 additions and 28 deletions

View File

@ -273,13 +273,10 @@ class ServiceHandler(SdrSourceEventClient):
if isinstance(demod, BaseDemodulatorChain):
return demod
# TODO: move this to Modes
demodChain = None
if demod == "nfm":
demodChain = NFm(48000)
return NFm(48000)
elif demod in ["usb", "lsb", "cw"]:
demodChain = Ssb()
return demodChain
return Ssb()
# TODO move this elsewhere
def _getSecondaryDemodulator(self, mod):