Subversion Repositories FlightCtrl

Rev

Rev 885 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 885 Rev 886
Line -... Line 1...
-
 
1
#ifndef _MENU_H
-
 
2
#define _MENU_H
-
 
3
 
-
 
4
#include <inttypes.h>
-
 
5
 
-
 
6
#define DISPLAYBUFFSIZE 80
-
 
7
 
1
extern void Menu(void);
8
extern void LCD_PrintMenu(void);
2
extern void LcdClear(void);
9
extern void LCD_Clear(void);
3
extern char DisplayBuff[80];
10
extern int8_t DisplayBuff[DISPLAYBUFFSIZE];
4
extern unsigned char DispPtr;
11
extern uint8_t DispPtr;
5
extern unsigned char RemoteTasten;
12
extern uint8_t RemoteButtons;
-
 
13
 
-
 
14
#endif //_MENU_H
-
 
15