diff --git a/owrx/dsp.py b/owrx/dsp.py index 17807482..185680a5 100644 --- a/owrx/dsp.py +++ b/owrx/dsp.py @@ -618,10 +618,10 @@ class DspManager(SdrSourceEventClient, ClientDemodulatorSecondaryDspEventClient) return CwDemodulator(75.0) elif mod == "rtty170": from csdr.chain.digimodes import RttyDemodulator - return RttyDemodulator(170.0, 45.45, False) + return RttyDemodulator(170.0, 45.45, reverse = False) elif mod == "rtty450": from csdr.chain.digimodes import RttyDemodulator - return RttyDemodulator(450.0, 50.0, True) + return RttyDemodulator(450.0, 50.0, reverse = True) def setSecondaryDemodulator(self, mod): demodulator = self._getSecondaryDemodulator(mod)