-
common operational amplifier circuit Collection
常用运放电路集锦-common operational amplifier circuit Collection
- 2022-02-01 22:13:04下载
- 积分:1
-
AT Keyboard interfacing with 8051 and can be easily modified for any other micro
AT Keyboard interfacing with 8051 and can be easily modified for any other micro-controller
- 2022-03-01 04:39:05下载
- 积分:1
-
在嵌入式LINUX下,利用QCOP在进程间通信的实例。通过该实例你可以熟悉QCOP进程间通信机制。...
在嵌入式LINUX下,利用QCOP在进程间通信的实例。通过该实例你可以熟悉QCOP进程间通信机制。-In the embedded LINUX, the use of in-process communication QCOP example. Through the examples you can familiar with the inter-process communication mechanism QCOP.
- 2022-01-28 09:24:29下载
- 积分:1
-
arm_ads 程序原代码,适合嵌入式开发的调试工作学习。
arm_ads 程序原代码,适合嵌入式开发的调试工作学习。-arm_ads program source code, suitable for debugging embedded development work and study.
- 2022-08-16 03:15:16下载
- 积分:1
-
eCos/RedBoot for勤研ARM AnywhereII(4510) 含全部源代码
eCos/RedBoot for勤研ARM AnywhereII(4510) 含全部源代码--eCos/RedBoot for Qin Yan ARM AnywhereII(4510), including all source codes.
- 2022-07-02 21:03:18下载
- 积分:1
-
arm的内部启动代码,用来引导linux操作系统。
arm的内部启动代码,用来引导linux操作系统。-arm" s internal startup code is used to boot linux operating system.
- 2023-03-20 13:30:04下载
- 积分:1
-
PROTEL format of EP2C8Q208 schematic and PCB, absolutely right
EP2C8Q208的PROTEL格式的原理图和PCB,绝对正确-PROTEL format of EP2C8Q208 schematic and PCB, absolutely right
- 2022-01-31 18:09:30下载
- 积分:1
-
Embedded database technology research, a master' s degree thesis, detailing t...
嵌入式数据库技术研究,硕士学位论文,详细介绍了嵌入式数据库的相关技术-Embedded database technology research, a master" s degree thesis, detailing the embedded database related technologies
- 2022-04-20 15:59:32下载
- 积分:1
-
单片机实现4×4键盘及8位数码管显示构成的电子密码锁,带有keil程序以及protuos的模拟电路。...
单片机实现4×4键盘及8位数码管显示构成的电子密码锁,带有keil程序以及protuos的模拟电路。-SCM 4 × 4 keyboard and 8-bit digital tube display constitutes an electronic code lock with keil procedures and protuos of analog circuits.
- 2022-01-25 22:52:51下载
- 积分: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