Added 6.25kHz and 8.33kHz tuning steps.

This commit is contained in:
Marat Fayzullin 2023-05-30 11:20:55 -04:00
parent 5af2b15902
commit fabdc2c119
4 changed files with 5 additions and 1 deletions

View File

@ -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.

1
debian/changelog vendored
View File

@ -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 <luarvique@gmail.com> Sat, 3 Jun 2023 16:12:00 +0000

View File

@ -220,6 +220,8 @@
<option value="3000">3kHz</option>
<option value="5000">5kHz</option>
<option value="6000">6kHz</option>
<option value="6250">6.25kHz</option>
<option value="8330">8.33kHz</option>
<option value="9000">9kHz</option>
<option value="10000">10kHz</option>
<option value="12000">12kHz</option>

View File

@ -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"),