#pragma ot(6 SIZE)
#include
#include
#define ERRORCOUNT 10
sbit SDA=P0^0;
sbit SCL=P0^1;
enum eepromtype {M2401 M2402 M2404 M2408 M2416 M2432 M2464 M24128 M24256};
enum eepromtype EepromType;
//DataBuff為讀寫(xiě)數(shù)據(jù)輸入/輸出緩沖區(qū)的首址
//ByteQuantity 為要讀寫(xiě)數(shù)據(jù)的字節(jié)數(shù)量
//Address 為EEPROM的片內(nèi)地址
//ControlByte 為EEPROM的控制字節(jié),具體形式為(1)(0)(1)(0)(A2)(A1)(A0)(R/W) 其中R/W=1
//表示讀操作 R/W=0為寫(xiě)操作 A2 A1 A0為EEPROM的頁(yè)選或片選地址;
//EepromType為枚舉變量 需為M2401至M24256中的一種 分別對(duì)應(yīng)24C01至24C256;
//函數(shù)返回值為一個(gè)位變量,若返回1表示此次操作失效,0表示操作成功;
//ERRORCOUNT為允許最大次數(shù),若出現(xiàn)ERRORCOUNT次操作失效后,則函數(shù)中止操作,并返回1
//SDA和SCL由用戶(hù)自定義,這里暫定義為P0^0和P0^1;
//其余的用戶(hù)不用管,只要把只子程序放在你的程序中并調(diào)用它就可以了;
/***********************************************************************************/
bit RW24XX(unsigned char *DataBuff unsigned char ByteQuantity unsigned int Address
unsigned char ControlByte enum eepromtype EepromType)
{
void Delay(unsigned char DelayCount);
void IICStart(void);
void IICStop(void);
bit IICRecAck(void);
void IICNoAck(void);
void IICAck(void);
unsigned char IICReceiveByte(void);
void IICSendByte(unsigned char sendbyte);
unsigned char data j i=ERRORCOUNT;
bit errorflag=1;
while(i--)
{
IICStart();
IICSendByte(ControlByte&0xfe);
if(IICRecAck())
continue;
if(EepromType>M2416)
{
IICSendByte((unsigned char)(Address>>8));
if(IICRecAck())
continue;
}
IICSendByte((unsigned char)Address);
if(IICRecAck())
continue;
if(!(ControlByte&0x01))
{
j=ByteQuantity;
errorflag=0; //********clr errorflag
while(j--)
{
IICSendByte(*DataBuff++);
if(!IICRecAck())
continue;
errorflag=1;
break;
}
if(errorflag==1)
continue;