From fabdc2c11961ee8e338a021df9ece13003e5f29e Mon Sep 17 00:00:00 2001 From: Marat Fayzullin Date: Tue, 30 May 2023 11:20:55 -0400 Subject: [PATCH] Added 6.25kHz and 8.33kHz tuning steps. --- CHANGELOG.md | 1 + debian/changelog | 1 + htdocs/index.html | 2 ++ owrx/source/__init__.py | 2 +- 4 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b385b90c..bf54faec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ - Changed read() to read1() in PopenModule to get immediate input. - Disabled the original POCSAG decoder, superseded by the new one. - Added 433.92MHz ISM frequency to the bandplan. +- Added 6.25kHz and 8.33kHz tuning steps. **1.2.17** - Integrated multimon-ng digital mode decoding suite. diff --git a/debian/changelog b/debian/changelog index 3c6acf26..45984948 100644 --- a/debian/changelog +++ b/debian/changelog @@ -11,6 +11,7 @@ openwebrx (1.2.18) bullseye jammy; urgency=low * Changed read() to read1() in PopenModule to get immediate input. * Disabled the original POCSAG decoder, superseded by the new one. * Added 433.92MHz ISM frequency to the bandplan. + * Added 6.25kHz and 8.33kHz tuning steps. -- Marat Fayzullin Sat, 3 Jun 2023 16:12:00 +0000 diff --git a/htdocs/index.html b/htdocs/index.html index 7f75dc4b..568688e1 100644 --- a/htdocs/index.html +++ b/htdocs/index.html @@ -220,6 +220,8 @@ + + diff --git a/owrx/source/__init__.py b/owrx/source/__init__.py index d5339459..0db26469 100644 --- a/owrx/source/__init__.py +++ b/owrx/source/__init__.py @@ -591,7 +591,7 @@ class SdrDeviceDescription(object): DropdownInput( "tuning_step", "Tuning step", - options=[Option(str(i), "{} Hz".format(i)) for i in [1, 10, 20, 50, 100, 500, 1000, 2500, 3000, 5000, 6000, 9000, 10000, 12000, 12500, 25000, 50000]], + options=[Option(str(i), "{} Hz".format(i)) for i in [1, 10, 20, 50, 100, 500, 1000, 2500, 3000, 5000, 6000, 6250, 8330, 9000, 10000, 12000, 12500, 25000, 50000]], converter=IntConverter(), ), NumberInput("initial_squelch_level", "Initial squelch level", append="dBFS"),