i2c_analog.h 232 B

12345678910111213
  1. #ifndef I2C_ANALOG_H_
  2. #define I2C_ANALOG_H_
  3. #include "typedefine.h"
  4. void I2C_Init(void);
  5. void I2C_Start(void) ;
  6. void I2C_Stop(void);
  7. void I2C_SendACK(UBYTE ack);
  8. void I2C_SendByte(UBYTE sendDAT);
  9. UBYTE I2C_RecvByte(void);
  10. #endif