Try to improve channel input

This commit is contained in:
Armel FAUVEAU
2024-06-29 03:50:49 +02:00
parent 3c2984cfd5
commit 2119f1a931
3 changed files with 44 additions and 19 deletions

View File

@@ -1474,6 +1474,20 @@ void APP_TimeSlice500ms(void)
gBeepToPlay = BEEP_NONE;
}
}
else
{
if (IS_MR_CHANNEL(gTxVfo->CHANNEL_SAVE)) { // user is entering channel number
switch (gInputBoxIndex)
{
case 1:
channelMove(gInputBox[0] - 1, false);
break;
case 2:
channelMove(((gInputBox[0] * 10) + gInputBox[1]) - 1, false);
break;
}
}
}
}
if (gDTMF_RX_live_timeout > 0)