EDF - OnePIC MCU  v1.1.0
source/base/include/OnePIC_mtouch.h
Go to the documentation of this file.
00001 
00007 #ifndef _EDF_MTOUCH_H
00008 #define _EDF_MTOUCH_H
00009 #include <stdint.h>
00010 
00029 typedef enum CAP_BUTTON_tag
00030 {
00031     CAP_UP,
00032     CAP_DOWN,
00033     CAP_LEFT,
00034     CAP_RIGHT,
00035     CAP_ENTER
00036 } CAP_BUTTON;
00037 
00047 typedef enum BANNER_STATE_tag
00048 {
00049     BANNER_CAP,
00050     BANNER_POT
00051 }BANNER_STATE;
00052 
00053 extern BANNER_STATE _bannerState;
00054 extern uint8_t *p_capString;
00055 
00056 void EDF_mTouchInit(void);
00057 void EDF_mTouchPoll(void);
00058 #endif //_EDF_MTOUCH_H
00059