📄 tp.c
字号:
/*********************************************************************************************
* File: tp.c
* Author: embest
* Desc: LCD touch screen control function
* History:
*********************************************************************************************/
/*--- include files ---*/
#include <string.h>
#include "tp.h"
#include "lcd.h"
int adint(void)
{ int i,tmp;
rADCCON=0x1|0x0<<2;
while(rADCCON&0x1);
while(!(rADCCON&0x40));
for(i=0;i<rADCPSR;i++);
tmp=0x3ff&rADCDAT;
return tmp;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -