Moving RDS mode up the list.

This commit is contained in:
Marat Fayzullin 2023-12-08 18:29:36 -05:00
parent 998bed74e5
commit d39f84a0eb
1 changed files with 10 additions and 10 deletions

View File

@ -227,6 +227,16 @@ class Modes(object):
service=True,
squelch=False
),
DigitalMode(
"rds",
"RDS",
underlying=["wfm"],
bandpass=Bandpass(-75000, 75000),
requirements=["rds"],
service=False,
squelch=False,
secondaryFft=False
),
DigitalMode(
"hfdl",
"HFDL",
@ -264,16 +274,6 @@ class Modes(object):
squelch=False,
secondaryFft=False
),
DigitalMode(
"rds",
"RDS",
underlying=["wfm"],
bandpass=Bandpass(-75000, 75000),
requirements=["rds"],
service=False,
squelch=False,
secondaryFft=False
),
]
@staticmethod