⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 touch.h

📁 ucosii和ucgui移植到LPC1788上
💻 H
字号:
/****************************************************************************
*****************************************************************************
								By JJ
*****************************************************************************
****************************************************************************/
#ifndef __TOUCH_H
#define __TOUCH_H

#define NUM_samples 4

/*Type A I/O Control registers */
#define IO_Pull_up 	  0x0|(0x2<<3)|(0x5<<5)		//Gpio pull-up
#define ADC_In 	     (0x1)|(0x1<<3)				//ADC Input
#define IO_No_UD     (0x0)|(0x0<<3)|(0x5<<5)	//Gpio no pull-up	and pull-down

#define XR 12
#define XL 23
#define YU 25
#define YD 24

extern unsigned short x_vaule, y_vaule;
extern void touch_init(void);
extern void config_pins_x(void);
extern void config_pins_y(void);
extern unsigned short read_ch_x(void);
extern unsigned short read_ch_y(void);
extern unsigned char tmp;


#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -