www.pudn.com > GSM-M51.rar > I2C.h


/************************************ 
文件名:I2C.h 
功  能:与I2C相关的宏定义,函数声明等 
*************************************/ 
#ifndef __I2C_H__ 
#define __I2C_H__ 
 
#define _NOP() _nop_();_nop_();_nop_();_nop_();_nop_() 
//器件地址:A0=0;A1=0;A2=0; 
#define    OP_READ    0xA1        // 器件地址以及读取操作 
#define    OP_WRITE   0xA0        // 器件地址以及写入操作 
 
void  I2C_START(void); 
void  I2C_STOP(void); 
void  I2C_ACK(void); 
void  I2C_WRITE_8BIT(uchar dat); 
uchar I2C_READ_8BIT(void); 
void  I2C_WRITE(uint addr,uchar dat); 
uchar I2C_READ(uint addr); 
 
#endif