一、C51讀寫(xiě)AT24C04源代碼
/*=============================================*/
/*;***********************************/
/*;起動(dòng)24C01時(shí)序*/
void Start()
{
SCL=1;
SDA=1;
SDA=0;
SCL=0;
}
/*;************************************/
/*;停止24C01時(shí)序*/
void Stop()
{
SDA=0;
SCL=1;
SDA=1;
}
/*;**************************************/
/*;檢測(cè)24C01的響應(yīng)信號(hào)*/
bit ACK()
{
bit c;
SDA=1;
SCL=1;
c=SDA;
SCL=0;
return c;
}
/*;************************************/
/*;往24C01發(fā)一8位數(shù)據(jù)*/
void SendChar(unsigned char ch)
{
unsigned char i;
i=8;
do
{
SDA=(ch&0x80);
SCL=1;
SCL=0;
ch《《=1;
}while(--i!=0);
}
/*;**************************************/
/*;從24C01接收一8位數(shù)據(jù)*/
unsigned char RecChar()
{
unsigned char i,j;
i=8;
do
{
SCL=1;
j=(j《《1)|SDA;
SCL=0;
}while(--i!=0);
return j;
}
//;**************************************
/*;********************************/
/*;往24C01寫(xiě)一字節(jié)*/
void WriteChar(unsigned int addr,unsigned char ch)
{
unsigned char c;
c=((*((unsigned char *)&addr))《《1)&0x02;
Start();
SendChar(0xa0|c);
ACK();
SendChar(addr);
ACK();
SendChar(ch);
ACK();
Stop();
// for(addr=4;addr!=0;addr--)
for(ch=0xff;ch!=0;ch--) ;
}
//;**************************************
/*;********************************/
/*;往24C01寫(xiě)多字節(jié)*/
void WriteBuf(unsigned int addr,unsigned char idata *buf,unsigned char count)
{
unsigned char c;
c=((*((unsigned char *)&addr))《《1)&0x02;
Start();
SendChar(0xa0|c);
ACK();
SendChar(addr);
ACK();
do
{
SendChar(*buf++);
ACK();
if(count!=1)
{if(((++addr)&0x7)==0)
{
Stop();
for(c=0xff;c!=0;c--) ;
c=((*((unsigned char *)&addr))《《1)&0x02;
Start();
SendChar(0xa0|c);
ACK();
SendChar(addr);
ACK();
}
}
else
{
Stop();
for(c=0xff;c!=0;c--) ;
}
}while(--count!=0);
}
/*;**********************************/
/*;從24C01讀一字節(jié)*/
/*;入口:R0中為要讀出內(nèi)容的地址*/
/*;出口:A中為讀到的內(nèi)容*/
unsigned char ReadChar(unsigned int addr)
{
unsigned char ch;
ch=((*((unsigned char *)&addr))《《1)&0x02;
Start();
SendChar(0xa0|ch);
ACK();
SendChar(addr);
ACK();
Start();
SendChar(0xa1|ch);
ACK();
ch=RecChar();
Stop();
return ch;
}
/**********************************/
/*至少讀2字節(jié)*/
void ReadBuf(unsigned int addr,unsigned char idata *buf,unsigned char count)
{
unsigned char ch;
ch=((*((unsigned char *)&addr))《《1)&0x02;
Start();
SendChar(0xa0|ch);
ACK();
SendChar(addr);
ACK();
Start();
SendChar(0xa1|ch);
ACK();
count--;
do
{
*buf++=RecChar();
SDA=0;
SCL=1;
SCL=0;
SDA=1;
}while(--count!=0);
*buf=RecChar();
Stop();
}
二、AT24C04測(cè)試程序
/**************************************
主芯片 : STC12C5A60S2 (1T)
工作頻率: 12.000MHz
**************************************/
#include “REG51.H”
#include “INTRINS.H”
typedef unsigned char BYTE;
typedef unsigned short WORD;
sbit SCL = P3^4; //AT24C04的時(shí)鐘
sbit SDA = P3^5; //AT24C04的數(shù)據(jù)
BYTE BUF[16]; //數(shù)據(jù)緩存區(qū)
BYTE code TESTDATA[] =
{
0x00,0x11,0x22,0x33,0x44,0x55,0x66,0x77,
0x88,0x99,0xAA,0xBB,0xCC,0xDD,0xEE,0xFF
};
void Delay5us();
void Delay5ms();
void AT24C04_Start();
void AT24C04_Stop();
void AT24C04_SendACK(bit ack);
bit AT24C04_RecvACK();
void AT24C04_SendByte(BYTE dat);
BYTE AT24C04_RecvByte();
void AT24C04_ReadPage();
void AT24C04_WritePage();
void main()
{
AT24C04_WritePage();
Delay5ms();
AT24C04_ReadPage();
while (1);
}
/**************************************
向AT24C04寫(xiě)1頁(yè)(16字節(jié))數(shù)據(jù)
將TESTDATA開(kāi)始的16個(gè)測(cè)試數(shù)據(jù)寫(xiě)如設(shè)備的00~0F地址中
**************************************/
void AT24C04_WritePage()
{
BYTE i;
AT24C04_Start(); //起始信號(hào)
AT24C04_SendByte(0xa0); //發(fā)送設(shè)備地址+寫(xiě)信號(hào)
AT24C04_SendByte(0x00); //發(fā)送存儲(chǔ)單元地址
for (i=0; i《16; i++)
{
AT24C04_SendByte(TESTDATA[i]);
}
AT24C04_Stop(); //停止信號(hào)
}
/**************************************
從AT24C04讀取1頁(yè)(16字節(jié))數(shù)據(jù)
將設(shè)備的00~0F地址中的數(shù)據(jù)讀出存放在DATA區(qū)的BUF中
**************************************/
void AT24C04_ReadPage()
{
BYTE i;
AT24C04_Start(); //起始信號(hào)
AT24C04_SendByte(0xa0); //發(fā)送設(shè)備地址+寫(xiě)信號(hào)
AT24C04_SendByte(0x00); //發(fā)送存儲(chǔ)單元地址
AT24C04_Start(); //起始信號(hào)
AT24C04_SendByte(0xa1); //發(fā)送設(shè)備地址+讀信號(hào)
for (i=0; i《16; i++)
{
BUF[i] = AT24C04_RecvByte();
if (i == 15)
{
AT24C04_SendACK(1); //最后一個(gè)數(shù)據(jù)需要會(huì)NAK
}
else
{
AT24C04_SendACK(0); //回應(yīng)ACK
}
}
AT24C04_Stop(); //停止信號(hào)
}
/**************************************
延時(shí)5微秒(STC12C5A60S2@12M)
不同的工作環(huán)境,需要調(diào)整此函數(shù)
此延時(shí)函數(shù)是使用1T的指令周期進(jìn)行計(jì)算,與傳統(tǒng)的12T的MCU不同
**************************************/
void Delay5us()
{
BYTE n = 4;
while (n--)
{
_nop_();
_nop_();
}
}
/**************************************
延時(shí)5毫秒(STC12C5A60S2@12M)
不同的工作環(huán)境,需要調(diào)整此函數(shù)
此延時(shí)函數(shù)是使用1T的指令周期進(jìn)行計(jì)算,與傳統(tǒng)的12T的MCU不同
**************************************/
void Delay5ms()
{
WORD n = 2500;
while (n--)
{
_nop_();
_nop_();
_nop_();
_nop_();
_nop_();
}
}
/**************************************
起始信號(hào)
**************************************/
void AT24C04_Start()
{
SDA = 1; //拉高數(shù)據(jù)線(xiàn)
SCL = 1; //拉高時(shí)鐘線(xiàn)
Delay5us(); //延時(shí)
SDA = 0; //產(chǎn)生下降沿
Delay5us(); //延時(shí)
SCL = 0; //拉低時(shí)鐘線(xiàn)
}
/**************************************
停止信號(hào)
**************************************/
void AT24C04_Stop()
{
SDA = 0; //拉低數(shù)據(jù)線(xiàn)
SCL = 1; //拉高時(shí)鐘線(xiàn)
Delay5us(); //延時(shí)
SDA = 1; //產(chǎn)生上升沿
Delay5us(); //延時(shí)
}
/**************************************
發(fā)送應(yīng)答信號(hào)
入口參數(shù):ack (0:ACK 1:NAK)
**************************************/
void AT24C04_SendACK(bit ack)
{
SDA = ack; //寫(xiě)應(yīng)答信號(hào)
SCL = 1; //拉高時(shí)鐘線(xiàn)
Delay5us(); //延時(shí)
SCL = 0; //拉低時(shí)鐘線(xiàn)
Delay5us(); //延時(shí)
}
/**************************************
接收應(yīng)答信號(hào)
**************************************/
bit AT24C04_RecvACK()
{
SCL = 1; //拉高時(shí)鐘線(xiàn)
Delay5us(); //延時(shí)
CY = SDA; //讀應(yīng)答信號(hào)
SCL = 0; //拉低時(shí)鐘線(xiàn)
Delay5us(); //延時(shí)
return CY;
}
/**************************************
向IIC總線(xiàn)發(fā)送一個(gè)字節(jié)數(shù)據(jù)
**************************************/
void AT24C04_SendByte(BYTE dat)
{
BYTE i;
for (i=0; i《8; i++) //8位計(jì)數(shù)器
{
dat 《《= 1; //移出數(shù)據(jù)的最高位
SDA = CY; //送數(shù)據(jù)口
SCL = 1; //拉高時(shí)鐘線(xiàn)
Delay5us(); //延時(shí)
SCL = 0; //拉低時(shí)鐘線(xiàn)
Delay5us(); //延時(shí)
}
AT24C04_RecvACK();
}
/**************************************
從IIC總線(xiàn)接收一個(gè)字節(jié)數(shù)據(jù)
**************************************/
BYTE AT24C04_RecvByte()
{
BYTE i;
BYTE dat = 0;
SDA = 1; //使能內(nèi)部上拉,準(zhǔn)備讀取數(shù)據(jù)
for (i=0; i《8; i++) //8位計(jì)數(shù)器
{
dat 《《= 1;
SCL = 1; //拉高時(shí)鐘線(xiàn)
Delay5us(); //延時(shí)
dat |= SDA; //讀數(shù)據(jù)
SCL = 0; //拉低時(shí)鐘線(xiàn)
Delay5us(); //延時(shí)
}
return dat;
}
-
STC12C5A60S2
+關(guān)注
關(guān)注
36文章
219瀏覽量
70007 -
AT24C04
+關(guān)注
關(guān)注
0文章
9瀏覽量
4493
發(fā)布評(píng)論請(qǐng)先 登錄
相關(guān)推薦
評(píng)論