repo.or.cz
/
qemu
/
ar7.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
block: Use bdrv_refresh_filename() to pull
[qemu/ar7.git]
/
hw
/
i2c
/
bitbang_i2c.h
blob
9443021710d760939334843532499cda10c75819
1
#ifndef BITBANG_I2C_H
2
#define BITBANG_I2C_H
3
4
#include
"hw/i2c/i2c.h"
5
6
#define BITBANG_I2C_SDA 0
7
#define BITBANG_I2C_SCL 1
8
9
bitbang_i2c_interface
*
bitbang_i2c_init
(
I2CBus
*
bus
);
10
int
bitbang_i2c_set
(
bitbang_i2c_interface
*
i2c
,
int
line
,
int
level
);
11
12
#endif