diff options
Diffstat (limited to 'qemu/hw/i2c/bitbang_i2c.h')
-rw-r--r-- | qemu/hw/i2c/bitbang_i2c.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/qemu/hw/i2c/bitbang_i2c.h b/qemu/hw/i2c/bitbang_i2c.h new file mode 100644 index 000000000..3a7126d5d --- /dev/null +++ b/qemu/hw/i2c/bitbang_i2c.h @@ -0,0 +1,14 @@ +#ifndef BITBANG_I2C_H +#define BITBANG_I2C_H + +#include "hw/i2c/i2c.h" + +typedef struct bitbang_i2c_interface bitbang_i2c_interface; + +#define BITBANG_I2C_SDA 0 +#define BITBANG_I2C_SCL 1 + +bitbang_i2c_interface *bitbang_i2c_init(I2CBus *bus); +int bitbang_i2c_set(bitbang_i2c_interface *i2c, int line, int level); + +#endif |