mirror of
https://codeberg.org/mclemens/ubitxv6.git
synced 2025-02-21 06:57:27 -05:00
update band buttons when tuning
This commit is contained in:
parent
405df5a757
commit
77fffccb46
@ -61,7 +61,7 @@ void mainMenuTune(int16_t knob)
|
|||||||
}
|
}
|
||||||
|
|
||||||
current_freq = GetActiveVfoFreq();
|
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
|
//Transition from below to above the traditional threshold for USB
|
||||||
if(current_freq < THRESHOLD_USB_LSB && new_freq >= THRESHOLD_USB_LSB){
|
if(current_freq < THRESHOLD_USB_LSB && new_freq >= THRESHOLD_USB_LSB){
|
||||||
@ -74,6 +74,7 @@ void mainMenuTune(int16_t knob)
|
|||||||
}
|
}
|
||||||
|
|
||||||
setFrequency(new_freq);
|
setFrequency(new_freq);
|
||||||
|
const uint32_t old_freq = current_freq;
|
||||||
current_freq = new_freq;
|
current_freq = new_freq;
|
||||||
|
|
||||||
Button button;
|
Button button;
|
||||||
@ -84,6 +85,7 @@ void mainMenuTune(int16_t knob)
|
|||||||
memcpy_P(&button,&bVfoB,sizeof(button));
|
memcpy_P(&button,&bVfoB,sizeof(button));
|
||||||
}
|
}
|
||||||
drawButton(&button);
|
drawButton(&button);
|
||||||
|
updateBandButtons(old_freq);
|
||||||
}
|
}
|
||||||
|
|
||||||
MenuReturn_e runMainMenu(const ButtonPress_e tuner_button,
|
MenuReturn_e runMainMenu(const ButtonPress_e tuner_button,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user