From ae8be4446ca9b695000e9ccc5127f84a3b27a329 Mon Sep 17 00:00:00 2001 From: Ian Renton Date: Tue, 21 Oct 2025 17:26:52 +0100 Subject: [PATCH] New mode seen --- core/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/constants.py b/core/constants.py index 426e924..96c0c27 100644 --- a/core/constants.py +++ b/core/constants.py @@ -32,7 +32,7 @@ SIGS = [ # Modes. Note "DIGI" and "DIGITAL" are also supported but are normalised into "DATA". CW_MODES = ["CW"] PHONE_MODES = ["PHONE", "SSB", "USB", "LSB", "AM", "FM", "DV", "DMR", "DSTAR", "C4FM", "M17"] -DATA_MODES = ["DATA", "FT8", "FT4", "RTTY", "SSTV", "JS8", "HELL", "BPSK", "PSK", "PSK31", "BPSK31", "OLIVIA"] +DATA_MODES = ["DATA", "FT8", "FT4", "RTTY", "SSTV", "JS8", "HELL", "BPSK", "PSK", "PSK31", "BPSK31", "OLIVIA", "MFSK", "MFSK32"] ALL_MODES = CW_MODES + PHONE_MODES + DATA_MODES MODE_TYPES = ["CW", "PHONE", "DATA"]