一、C51讀寫AT24C04源代碼
/*=============================================*/
/*;***********************************/
/*;起動24C01時序*/
void Start()
{
SCL=1;
SDA=1;
SDA=0;
SCL=0;
}
/*;************************************/
/*;停止24C01時序*/
void Stop()
{
SDA=0;
SCL=1;
SDA=1;
}
/*;**************************************/
bit ACK()
{
bit c;
SDA=1;
SCL=1;
c=SDA;
SCL=0;
return c;
}
/*;************************************/
/*;往24C01發一8位數據*/
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位數據*/
unsigned char RecChar()
{
unsigned char i,j;
i=8;
do
{
SCL=1;
j=(j《《1)|SDA;
SCL=0;
}while(--i!=0);
return j;
}
//;**************************************
/*;********************************/
/*;往24C01寫一字節*/
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寫多字節*/
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讀一字節*/
/*;入口:R0中為要讀出內容的地址*/
/*;出口:A中為讀到的內容*/
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字節*/
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測試程序
/**************************************
主芯片 : STC12C5A60S2 (1T)
工作頻率: 12.000MHz
**************************************/
#include “REG51.H”
#include “INTRINS.H”
typedef unsigned char BYTE;
typedef unsigned short WORD;
sbit SCL = P3^4; //AT24C04的時鐘
sbit SDA = P3^5; //AT24C04的數據
BYTE BUF[16]; //數據緩存區
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寫1頁(16字節)數據
將TESTDATA開始的16個測試數據寫如設備的00~0F地址中
**************************************/
void AT24C04_WritePage()
{
BYTE i;
AT24C04_Start(); //起始信號
AT24C04_SendByte(0xa0); //發送設備地址+寫信號
AT24C04_SendByte(0x00); //發送存儲單元地址
for (i=0; i《16; i++)
{
AT24C04_SendByte(TESTDATA[i]);
}
AT24C04_Stop(); //停止信號
}
/**************************************
從AT24C04讀取1頁(16字節)數據
將設備的00~0F地址中的數據讀出存放在DATA區的BUF中
**************************************/
void AT24C04_ReadPage()
{
BYTE i;
AT24C04_Start(); //起始信號
AT24C04_SendByte(0xa0); //發送設備地址+寫信號
AT24C04_SendByte(0x00); //發送存儲單元地址
AT24C04_Start(); //起始信號
AT24C04_SendByte(0xa1); //發送設備地址+讀信號
for (i=0; i《16; i++)
{
BUF[i] = AT24C04_RecvByte();
if (i == 15)
{
AT24C04_SendACK(1); //最后一個數據需要會NAK
}
else
{
AT24C04_SendACK(0); //回應ACK
}
}
AT24C04_Stop(); //停止信號
}
/**************************************
延時5微秒(STC12C5A60S2@12M)
不同的工作環境,需要調整此函數
此延時函數是使用1T的指令周期進行計算,與傳統的12T的MCU不同
**************************************/
void Delay5us()
{
BYTE n = 4;
while (n--)
{
_nop_();
_nop_();
}
}
/**************************************
延時5毫秒(STC12C5A60S2@12M)
不同的工作環境,需要調整此函數
此延時函數是使用1T的指令周期進行計算,與傳統的12T的MCU不同
**************************************/
void Delay5ms()
{
WORD n = 2500;
while (n--)
{
_nop_();
_nop_();
_nop_();
_nop_();
_nop_();
}
}
/**************************************
起始信號
**************************************/
void AT24C04_Start()
{
SDA = 1; //拉高數據線
SCL = 1; //拉高時鐘線
Delay5us(); //延時
SDA = 0; //產生下降沿
Delay5us(); //延時
SCL = 0; //拉低時鐘線
}
/**************************************
停止信號
**************************************/
void AT24C04_Stop()
{
SDA = 0; //拉低數據線
SCL = 1; //拉高時鐘線
Delay5us(); //延時
SDA = 1; //產生上升沿
Delay5us(); //延時
}
/**************************************
發送應答信號
入口參數:ack (0:ACK 1:NAK)
**************************************/
void AT24C04_SendACK(bit ack)
{
SDA = ack; //寫應答信號
SCL = 1; //拉高時鐘線
Delay5us(); //延時
SCL = 0; //拉低時鐘線
Delay5us(); //延時
}
/**************************************
接收應答信號
**************************************/
bit AT24C04_RecvACK()
{
SCL = 1; //拉高時鐘線
Delay5us(); //延時
CY = SDA; //讀應答信號
SCL = 0; //拉低時鐘線
Delay5us(); //延時
return CY;
}
/**************************************
向IIC總線發送一個字節數據
**************************************/
void AT24C04_SendByte(BYTE dat)
{
BYTE i;
for (i=0; i《8; i++) //8位計數器
{
dat 《《= 1; //移出數據的最高位
SDA = CY; //送數據口
SCL = 1; //拉高時鐘線
Delay5us(); //延時
SCL = 0; //拉低時鐘線
Delay5us(); //延時
}
AT24C04_RecvACK();
}
/**************************************
從IIC總線接收一個字節數據
**************************************/
BYTE AT24C04_RecvByte()
{
BYTE i;
BYTE dat = 0;
SDA = 1; //使能內部上拉,準備讀取數據
for (i=0; i《8; i++) //8位計數器
{
dat 《《= 1;
SCL = 1; //拉高時鐘線
Delay5us(); //延時
dat |= SDA; //讀數據
SCL = 0; //拉低時鐘線
Delay5us(); //延時
}
return dat;
}
-
STC12C5A60S2
+關注
關注
36文章
219瀏覽量
69411 -
AT24C04
+關注
關注
0文章
9瀏覽量
4467
發布評論請先 登錄
相關推薦
評論