Subversion Repositories FlightCtrl

Rev

Rev 1612 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1612 Rev 2018
1
#ifndef _MENU_H
1
#ifndef _MENU_H
2
#define _MENU_H
2
#define _MENU_H
3
 
3
 
4
#include <inttypes.h>
4
#include <inttypes.h>
5
 
5
 
6
#define DISPLAYBUFFSIZE 80
6
#define DISPLAYBUFFSIZE 80
7
 
7
 
8
extern void LCD_PrintMenu(void);
8
extern void LCD_printMenu(void);
9
extern void LCD_Clear(void);
9
extern void LCD_clear(void);
10
extern int8_t DisplayBuff[DISPLAYBUFFSIZE];
10
extern int8_t displayBuff[DISPLAYBUFFSIZE];
11
extern uint8_t DispPtr;
11
extern uint8_t dispPtr;
12
extern uint8_t MenuItem;
12
extern uint8_t menuItem;
13
extern uint8_t MaxMenuItem;
13
extern uint8_t maxMenuItem;
14
extern uint8_t RemoteKeys;
14
extern uint8_t remoteKeys;
15
#endif //_MENU_H
-
 
16
 
-
 
17
 
15
#endif //_MENU_H
18
 
16