From 77fffccb467514d448e34504184e5a077261b535 Mon Sep 17 00:00:00 2001 From: Reed Nightingale Date: Tue, 11 Feb 2020 23:10:06 -0800 Subject: [PATCH] update band buttons when tuning --- menu_main.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/menu_main.cpp b/menu_main.cpp index 0610f9d..54a6bd9 100644 --- a/menu_main.cpp +++ b/menu_main.cpp @@ -61,7 +61,7 @@ void mainMenuTune(int16_t knob) } current_freq = GetActiveVfoFreq(); - uint32_t new_freq = current_freq + (50 * knob); + const uint32_t new_freq = current_freq + (50 * knob); //Transition from below to above the traditional threshold for USB if(current_freq < THRESHOLD_USB_LSB && new_freq >= THRESHOLD_USB_LSB){ @@ -74,6 +74,7 @@ void mainMenuTune(int16_t knob) } setFrequency(new_freq); + const uint32_t old_freq = current_freq; current_freq = new_freq; Button button; @@ -84,6 +85,7 @@ void mainMenuTune(int16_t knob) memcpy_P(&button,&bVfoB,sizeof(button)); } drawButton(&button); + updateBandButtons(old_freq); } MenuReturn_e runMainMenu(const ButtonPress_e tuner_button,