From 47e595311f4ad246c62df89faf40fb1328268da7 Mon Sep 17 00:00:00 2001 From: Marat Fayzullin Date: Tue, 23 May 2023 23:34:30 -0400 Subject: [PATCH] Adding SelCall decoder via multimon-ng. --- owrx/modes.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/owrx/modes.py b/owrx/modes.py index eef07b20..7eaa89ee 100644 --- a/owrx/modes.py +++ b/owrx/modes.py @@ -164,6 +164,14 @@ class Modes(object): requirements=["flex"], squelch=False, ), + DigitalMode( + "selcall", + "SelCall", + underlying=["nfm"], + bandpass=Bandpass(-3000, 3000), + requirements=["selcall"], + squelch=False, + ), DigitalMode("cwdecoder", "CWDecoder", underlying=["usb"]), DigitalMode("rtty170", "RTTY-170", underlying=["usb"]), DigitalMode("rtty450", "RTTY-450", underlying=["usb"]),