0
mirror of https://github.com/OneOfEleven/uv-k5-firmware-custom.git synced 2025-06-18 22:29:50 +03:00
This commit is contained in:
OneOfEleven
2023-11-09 12:22:54 +00:00
parent 81e9419647
commit 6f9b770b77
10 changed files with 35 additions and 5 deletions

View File

@ -84,6 +84,9 @@ const t_menu_item g_menu_list[] =
#endif
#ifdef ENABLE_KEYLOCK
{"KeyLOC", VOICE_ID_INVALID, MENU_AUTO_KEY_LOCK }, // was "AUTOLk"
#endif
#ifdef ENABLE_SCAN_RANGES
{"S RANG", VOICE_ID_INVALID, MENU_SCAN_RANGES },
#endif
{"S ADD1", VOICE_ID_INVALID, MENU_S_ADD1 },
{"S ADD2", VOICE_ID_INVALID, MENU_S_ADD2 },
@ -765,6 +768,9 @@ void UI_DisplayMenu(void)
#ifdef ENABLE_AM_FIX
// case MENU_AM_FIX:
#endif
#ifdef ENABLE_SCAN_RANGES
case MENU_SCAN_RANGES:
#endif
case MENU_S_ADD1:
case MENU_S_ADD2:
strcpy(str, g_sub_menu_off_on[g_sub_menu_selection]);

View File

@ -70,6 +70,9 @@ enum
MENU_AUTO_BACKLITE_ON_TX_RX,
#ifdef ENABLE_CONTRAST
MENU_CONTRAST,
#endif
#ifdef ENABLE_SCAN_RANGES
MENU_SCAN_RANGES,
#endif
MENU_S_ADD1,
MENU_S_ADD2,