-
touchsceen_test
├─ main.c C语言主源文件
├─ AscII6x8.c Ascii字符6x8点阵显示格式数据
├─...
touchsceen_test
├─ main.c C语言主源文件
├─ AscII6x8.c Ascii字符6x8点阵显示格式数据
├─ lcd.c LCD显示函数源文件
├─ lcd.h LCD定义头文件
├─ Call_int.s 中断处理文件
├─ tp.c 触摸屏控制函数源文件
└─ tp.h 触摸屏控制定义头文件-touchsceen_test East main.c C-language source East Main-AscII6x8.c Ascii character dot matrix display delivers data format and technology-lcd.c LCD display function source East-definition LCD lcd.h headers East-Call_int.s interrupt handling documents and technology-tp.c Touchscreen control function-source supply tp.h Touchscreen Control definition files
- 2023-03-18 10:45:03下载
- 积分:1
-
IAR prepared to use, MSP430 button switch control with LED, invaluable learning...
用IAR编写的,MSP430用按键开关控制LED,不可多得的学习程序-IAR prepared to use, MSP430 button switch control with LED, invaluable learning process
- 2022-02-04 19:01:24下载
- 积分:1
-
研勤公司2440开发板的测试程序,包括所有s3c2440模块的测试,推荐下载...
研勤公司2440开发板的测试程序,包括所有s3c2440模块的测试,推荐下载-research service company 2440 development board testing procedures, including all s3c2440 module testing, download
- 2022-01-25 15:25:22下载
- 积分:1
-
ISE 9.2系列工作
ISE 9.2 serials working
- 2022-07-16 22:16:12下载
- 积分:1
-
基于单片机的贪吃蛇的源程序的参考程序,很有用的哦
基于单片机的贪吃蛇的源程序的参考程序,很有用的哦-Snake-based microcontroller reference to the source program, very useful oh
- 2022-03-24 11:31:32下载
- 积分:1
-
Nucleus实时操作系统手册
nucleus RTOS brochure
- 2022-09-06 04:30:03下载
- 积分:1
-
"embedded system components revealed" part of the source code informat...
《嵌入式系统构件揭密》部分源代码资料-"embedded system components revealed" part of the source code information
- 2022-01-25 22:18:07下载
- 积分:1
-
详细描叙arm
详细描叙arm-linux的配置过程,整个过程都是自己经验总结,还配有大量图片,可供需要的人使用-Arm-linux describes in detail the configuration process, the whole process for his own experience, also has a large number of pictures, for those who need to use
- 2022-02-11 21:50:28下载
- 积分:1
-
AVR microcontroller
//#包括;
- 2022-01-25 16:07:13下载
- 积分:1
-
PIC16F877A 24C02读写
资源描述
/***************************************************************************
* 文件名:24c02
* 功 能:利用IIC总线对eeprom 24c02,进行读写
* 作 者:TXMCU
* 日 期:
* 备 注:
//软件思路:当按键KEY0按下时,把6个连续的数据写入到6个连续的单元内,
//写完成后数码管显示单个0,做为完成标志位,当按键KEY1按下后,
//读取EEPROM连续六个单元,读取结果送6位数码管显示
//
//开发板连接方法:将JP10 JP11 JP12 JP13这4个跳线帽分别接到24C02位置
// 把JP8的的跳线帽跳到DPY位置上,JP14选择在IO口位置上
****************************************************************************/
#include
__CONFIG(0x1832);
//芯片配置字,看门狗关,上电延时开,掉电检测关,低压编程关,加密,4M晶体HS振荡
#define address 0xa
#define nop() asm("asm")
//定义待写入的数据
const char ee_data_write[] = {0, 4, 2, 3, 3, 1};
//定义读取数据存放的缓冲区
unsigned char ee_date[6];
//定义0-9的显示代码
- 2022-03-18 07:32:17下载
- 积分:1