mirror of
https://github.com/jketterl/openwebrx.git
synced 2026-01-05 00:00:43 +01:00
add a narrow rtty mode for DWD 147.3
This commit is contained in:
parent
8ee5edc9f2
commit
f88fd1c160
|
|
@ -606,6 +606,9 @@ class DspManager(SdrSourceEventClient, ClientDemodulatorSecondaryDspEventClient)
|
|||
elif mod == "rtty450":
|
||||
from csdr.chain.digimodes import RttyDemodulator
|
||||
return RttyDemodulator(50, 450, invert=True)
|
||||
elif mod == "rtty85":
|
||||
from csdr.chain.digimodes import RttyDemodulator
|
||||
return RttyDemodulator(50, 85, invert=True)
|
||||
|
||||
def setSecondaryDemodulator(self, mod):
|
||||
demodulator = self._getSecondaryDemodulator(mod)
|
||||
|
|
|
|||
|
|
@ -121,6 +121,7 @@ class Modes(object):
|
|||
DigitalMode("bpsk63", "BPSK63", underlying=["usb"]),
|
||||
DigitalMode("rtty170", "RTTY 45/170", underlying=["usb", "lsb"]),
|
||||
DigitalMode("rtty450", "RTTY 50N/450", underlying=["lsb", "usb"]),
|
||||
DigitalMode("rtty85", "RTTY 50N/85", underlying=["lsb", "usb"]),
|
||||
WsjtMode("ft8", "FT8"),
|
||||
WsjtMode("ft4", "FT4"),
|
||||
WsjtMode("jt65", "JT65"),
|
||||
|
|
|
|||
Loading…
Reference in a new issue