mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
47b43a1f41
Many headers are used only in a single directory. These can be kept in hw/. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
14 lines
317 B
C
14 lines
317 B
C
#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(i2c_bus *bus);
|
|
int bitbang_i2c_set(bitbang_i2c_interface *i2c, int line, int level);
|
|
|
|
#endif
|