From db187301ab3d44c927597d85192a6777792d96b7 Mon Sep 17 00:00:00 2001 From: gullradriel <3157857+gullradriel@users.noreply.github.com> Date: Sun, 11 May 2025 21:36:47 +0200 Subject: [PATCH] adding 10Hz and 50Hz to freqman_steps (#2652) --- firmware/application/freqman_db.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/firmware/application/freqman_db.cpp b/firmware/application/freqman_db.cpp index efcc929ca..de7ed2200 100644 --- a/firmware/application/freqman_db.cpp +++ b/firmware/application/freqman_db.cpp @@ -114,6 +114,8 @@ options_t freqman_bandwidths[6] = { // TODO: these should be indexes. options_t freqman_steps = { + {"10Hz ", 10}, + {"50Hz ", 50}, {"0.1kHz ", 100}, {"1kHz ", 1000}, {"5kHz (SA AM)", 5000}, @@ -134,6 +136,8 @@ options_t freqman_steps = { // TODO: these should be indexes. options_t freqman_steps_short = { + {"10Hz", 10}, + {"50Hz", 50}, {"0.1kHz", 100}, {"1kHz", 1000}, {"5kHz", 5000},