From e7d7cbf3ff2461341949a1ba5845352cae5b5a28 Mon Sep 17 00:00:00 2001 From: Marat Fayzullin Date: Mon, 30 Jan 2023 22:49:29 -0500 Subject: [PATCH] Cleanup --- owrx/dsp.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)