25 lines
484 B
C
25 lines
484 B
C
|
|
/*
|
||
|
|
* testMenu.h
|
||
|
|
*
|
||
|
|
* Created on: Mar 27, 2024
|
||
|
|
* Author: Brian.Bailey
|
||
|
|
*/
|
||
|
|
|
||
|
|
#ifndef TESTMENU_H_
|
||
|
|
#define TESTMENU_H_
|
||
|
|
|
||
|
|
|
||
|
|
#define TEST_MENU_NUM 3
|
||
|
|
#define HWFIX_MENU_NUM 3
|
||
|
|
|
||
|
|
#define MENU_TEST_TEXT_Y_START 21 //submenu text y starting value (start + n*lines). same as MENU_LINE_HEIGHT
|
||
|
|
|
||
|
|
#define MENU_TEST_MAX_LINES_DISPLAYED 5 //5 lines per page for testMenu
|
||
|
|
|
||
|
|
|
||
|
|
void TM_Init(void);
|
||
|
|
void TM_TestMenu(void);
|
||
|
|
void TM_DisplayTestMenu(uint32_t selected);
|
||
|
|
|
||
|
|
#endif /* TESTMENU_H_ */
|