Improve TxTOut (28/63)

This commit is contained in:
Armel FAUVEAU
2024-04-05 06:05:49 +02:00
parent d489dedf51
commit 623a86b298
4 changed files with 11 additions and 3 deletions

View File

@@ -197,6 +197,7 @@ const char gSubMenu_SAVE[][4] =
"1:4"
};
/*
const char gSubMenu_TOT[][7] =
{
"30 sec",
@@ -211,6 +212,7 @@ const char gSubMenu_TOT[][7] =
"9 min",
"15 min"
};
*/
const char* const gSubMenu_RXMode[] =
{
@@ -791,7 +793,7 @@ void UI_DisplayMenu(void)
break;
case MENU_TOT:
strcpy(String, gSubMenu_TOT[gSubMenuSelection]);
sprintf(String, "%02dm:%02ds", (((gSubMenuSelection + 1) * 5) / 60), (((gSubMenuSelection + 1) * 5) % 60));
break;
#ifdef ENABLE_VOICE