mirror of
https://codeberg.org/mclemens/ubitxv6.git
synced 2024-11-02 06:27:38 -04:00
Instead of fast tuning, play back the current frequency upon selection
This commit is contained in:
parent
68b85e6fa0
commit
c6b21bfa6d
20
ubitx_ui.cpp
20
ubitx_ui.cpp
@ -710,22 +710,18 @@ void doCommand(Button* button){
|
||||
}
|
||||
case BUTTON_VFOA:
|
||||
{
|
||||
if(VFO_A == globalSettings.activeVfo){
|
||||
fastTune();
|
||||
}
|
||||
else{
|
||||
switchVFO(VFO_A);
|
||||
}
|
||||
switchVFO(VFO_A);
|
||||
uint32_t freq = globalSettings.vfoA.frequency;
|
||||
ltoa(freq,b,10);
|
||||
morseText(b);
|
||||
break;
|
||||
}
|
||||
case BUTTON_VFOB:
|
||||
{
|
||||
if(VFO_B == globalSettings.activeVfo){
|
||||
fastTune();
|
||||
}
|
||||
else{
|
||||
switchVFO(VFO_B);
|
||||
}
|
||||
switchVFO(VFO_B);
|
||||
uint32_t freq = globalSettings.vfoB.frequency;
|
||||
ltoa(freq,b,10);
|
||||
morseText(b);
|
||||
break;
|
||||
}
|
||||
case BUTTON_80:
|
||||
|
Loading…
Reference in New Issue
Block a user