bitbang_i2c.h 310 B

1234567891011121314
  1. #ifndef BITBANG_I2C_H
  2. #define BITBANG_I2C_H
  3. #include "i2c.h"
  4. typedef struct bitbang_i2c_interface bitbang_i2c_interface;
  5. #define BITBANG_I2C_SDA 0
  6. #define BITBANG_I2C_SCL 1
  7. bitbang_i2c_interface *bitbang_i2c_init(i2c_bus *bus);
  8. int bitbang_i2c_set(bitbang_i2c_interface *i2c, int line, int level);
  9. #endif