Rev 41 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
41 | ingob | 1 | #ifndef _MENU_H |
2 | #define _MENU_H |
||
3 | |||
4 | |||
5 | #define DISPLAYBUFFSIZE 80 |
||
6 | |||
7 | void Menu(void); |
||
8 | void LCD_PrintMenu(void); |
||
9 | void LCD_Clear(void); |
||
10 | |||
11 | extern s8 DisplayBuff[DISPLAYBUFFSIZE]; |
||
1 | ingob | 12 | extern u8 DispPtr; |
41 | ingob | 13 | extern u8 MenuItem; |
14 | extern u8 MaxMenuItem; |
||
15 | extern u8 RemoteKeys; |
||
1 | ingob | 16 | |
41 | ingob | 17 | #endif // _MENU_H |