Statistics
| Branch: | Revision:

root / hw / i2c / bitbang_i2c.h @ cba933b2

History | View | Annotate | Download (316 Bytes)

1 3cd035d8 Paul Brook
#ifndef BITBANG_I2C_H
2 3cd035d8 Paul Brook
#define BITBANG_I2C_H
3 3cd035d8 Paul Brook
4 0d09e41a Paolo Bonzini
#include "hw/i2c/i2c.h"
5 3cd035d8 Paul Brook
6 3cd035d8 Paul Brook
typedef struct bitbang_i2c_interface bitbang_i2c_interface;
7 3cd035d8 Paul Brook
8 3cd035d8 Paul Brook
#define BITBANG_I2C_SDA 0
9 3cd035d8 Paul Brook
#define BITBANG_I2C_SCL 1
10 3cd035d8 Paul Brook
11 a5c82852 Andreas Färber
bitbang_i2c_interface *bitbang_i2c_init(I2CBus *bus);
12 3cd035d8 Paul Brook
int bitbang_i2c_set(bitbang_i2c_interface *i2c, int line, int level);
13 3cd035d8 Paul Brook
14 3cd035d8 Paul Brook
#endif