#include <at24c01a.h>
/*******************************************
******
向24C01A写入一个字节
输入:E2ROM地址,字节数据
************************************************
******/
void write24c01a(uchar uadd_1,uchar udata_1)
{
sendbyte=0xa0;
start();
send(sendbyte);
if (!ack())
continue;
send(uadd_1);
if (!ack())
continue;
send(udata_1)
if (!ack())
continue;
stop();
}
/**********************************
发送开始
*****************************************/
void start(void)
{
a_scl=1;
a_sda=1;
a_sda=0;
a_scl=0;
a_scl=1;
}
/********************************************
发送停止
*******************************************/
void stop(void)
{
a_scl=0;
a_sda=0;
a_scl=1;
a_sda=1;
}
/*********************************************
发送反馈
************************************************
/
bit ack(void)
{
int a_ack
a_scl=0;
a_scl=0;
a_scl=0;
a_scl=1;
a_ack=a_sda;
a_scl=0;
return(a_ack)
}
/*************************************
*
发送无反馈
********************************************/
bit noack(void)
{
int a_ack;
a_scl=1;
a_scl=1;
a_scl=0;
}
/******************************************
*
发送
****************************************************
/
void send(uchar undata)
{
uchar i;
sendbyte=undata
for(i=8;i>0;i--)
{
a_sda=sendbyte7;
a_scl=0;
a_scl=1;
sendbyte=sendbyte<<1
}
}
/********************************************
接受
****************************************************
/
void receive(void)
{
int i;
uchar data;
for(i=8;i>0;i--)
{ a_scl=1;
receivebyte7=a_sda;
a_scl=0;
receivebyte=receivebyte>>1
}
receivedata=receivebyte;
}
/*******************************************
*
向 24c01a读一个字节;
输入:EEROM地址;
输出:EEROM数据;
********************************************/
void read24c01a(uchar counter)
{
receivebyte=0xa1;
start();
send(receivebyte);
if (!ack())
continue;
send(counter);
if (!ack())
continue;
receive()
noack();
stop();
}
资源简介:24C01A的读写程序,有须要的朋友可以拿去用用.
上传时间: 2014-08-09
上传用户:ynsnjs
资源简介:是关于对数据采集卡的基于PC104总线的读写程序,开发环境Quarters , 用VHDL语言编写。
上传时间: 2013-08-29
上传用户:qw12
资源简介:24c02 的读写程序
上传时间: 2013-12-21
上传用户:cainaifa
资源简介:X5045的读写程序
上传时间: 2014-11-28
上传用户:lht618
资源简介:24c16的读写程序
上传时间: 2015-03-04
上传用户:fanboynet
资源简介:sle4442的读写程序
上传时间: 2014-01-23
上传用户:weiwolkt
资源简介:mm36sb020存储器与单片机连接时的读写程序!里面还包含了与单片机的接口!
上传时间: 2013-12-16
上传用户:Divine
资源简介:24C02 的读写程序。解压 直接调用。 有说明注释 的 。
上传时间: 2015-03-22
上传用户:nanxia
资源简介:I2C芯片的读写程序
上传时间: 2015-03-22
上传用户:hphh
资源简介:一个24c16的读写程序,编译调试通过了的。单片机需要读IC卡的朋友注意了
上传时间: 2014-01-03
上传用户:yph853211