代码搜索结果
找到约 20,284 项符合
I2C 的代码
i2c.plg
Build target 'Target 1'
linking...
Program Size: data=8.0 xdata=0 code=411
creating hex file from "I2C"...
"I2C" - 0 Error(s), 0 Warning(s).
i2c.v
//----------------------------------------------------------------------------
//
// Name: i2c.v
//
// Description: top-level moduel for I2C serial controller
//
// $Revision: 1.0 $
i2c.fit.summary
Flow Status : Successful - Sat Feb 18 12:15:58 2006
Quartus II Version : 5.0 Build 148 04/26/2005 SJ Full Version
Revision Name : i2c
Top-level Entity Name : i2c
Family : MAX II
Device : EPM1270T
i2c.flow.rpt
Flow report for i2c
Sat Feb 18 12:16:09 2006
Version 5.0 Build 148 04/26/2005 SJ Full Version
---------------------
; Table of Contents ;
---------------------
1. Legal Notice
2. Flow S
i2c.map.summary
Flow Status : Successful - Sat Feb 18 12:15:46 2006
Quartus II Version : 5.0 Build 148 04/26/2005 SJ Full Version
Revision Name : i2c
Top-level Entity Name : i2c
Family : MAX II
Device : EPM1270T
i2c.txt
I2C万能驱动
[ 2007-3-28 20:48:00 | By: 天涯 ]
#i nclude "reg51.h"
#i nclude "intrins.h"
unsigned char SystemError;
sbit SCL= P1^6; //定义串行时钟线所在口 使用时根据自己的需要来定义
sbit SDA= P1^7; //定义串行数据线所在口 使用时根据自己
i2c-8255.h
/*
I2C.h
标准80C51 单片机模拟I2C 总线的主机程序头文件
Copyright (c) 2005,广州周立功单片机发展有限公司
All rights reserved.
本程序仅供学习参考,不提供任何可靠性方面的担保;请勿用于商业目的
*/
#ifndef _I2C_H_
#define _I2C_H_
#include
#include
i2c-8255.c
/*
I2C.c
标准80C51 单片机模拟I2C 总线的主机程序
Copyright (c) 2005,广州周立功单片机发展有限公司
All rights reserved.
本程序仅供学习参考,不提供任何可靠性方面的担保;请勿用于商业目的
*/
#include "I2C.h"
#include "intrins.h"
//定义延时变量,用于宏I2C_Delay()
uns
i2c.bak
/*
I2C.h
标准80C51单片机模拟I2C总线的主机程序头文件
Copyright (c) 2006,广州周立功单片机发展有限公司
All rights reserved.
本程序仅供学习参考,不提供任何可靠性方面的担保;请勿用于商业目的
*/
#ifndef _I2C_H_
#define _I2C_H_
#include