Subversion Repositories Projects

Rev

Rev 426 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
426 killagreg 1
#ifndef _MENU_H
2
#define _MENU_H
3
 
4
#include <inttypes.h>
5
 
6
#define DISPLAYBUFFSIZE 80
7
 
765 - 8
extern void Menu_Update(uint8_t Keys);
9
extern void Menu_Clear(void);
426 killagreg 10
extern int8_t DisplayBuff[DISPLAYBUFFSIZE];
11
extern uint8_t DispPtr;
12
extern uint8_t MenuItem;
13
extern uint8_t MaxMenuItem;
14
#endif //_MENU_H
15
 
16