Added freq cal menu option (hidden) + 8.33kHz step bug fix

This commit is contained in:
OneOfEleven
2023-09-15 21:58:59 +01:00
parent 43b9c0944a
commit eb7dcceaab
16 changed files with 233 additions and 113 deletions

View File

@@ -82,12 +82,17 @@ enum
#endif
MENU_DEL_CH,
MENU_RESET,
// items after here are normally hidden
MENU_350TX,
MENU_F_LOCK,
MENU_200TX,
MENU_500TX,
MENU_350EN,
MENU_SCREN
MENU_SCREN,
MENU_F_CALI // reference xtal calibration
};
extern const char MenuList[][7];
@@ -121,9 +126,8 @@ extern bool gIsInSubMenu;
extern uint8_t gMenuCursor;
extern int8_t gMenuScrollDirection;
extern uint32_t gSubMenuSelection;
extern int32_t gSubMenuSelection;
void UI_DisplayMenu(void);
#endif