diff options
| author | Steve Markgraf <steve@steve-m.de> | 2012-03-12 00:30:54 +0100 |
|---|---|---|
| committer | Steve Markgraf <steve@steve-m.de> | 2012-03-12 00:30:54 +0100 |
| commit | 5a4fd14581e9da5418a7d9e42c32ff00cafa222e (patch) | |
| tree | f0698f49893a2d51d43ba2faa140f1432cd4432c /src/i2c.h | |
initial commit
Signed-off-by: Steve Markgraf <steve@steve-m.de>
Diffstat (limited to 'src/i2c.h')
| -rw-r--r-- | src/i2c.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/i2c.h b/src/i2c.h new file mode 100644 index 0000000..31c21bb --- /dev/null +++ b/src/i2c.h @@ -0,0 +1,7 @@ +#ifndef __I2C_H +#define __I2C_H + +int rtl_i2c_write(uint8_t i2c_addr, uint8_t *buffer, int len); +int rtl_i2c_read(uint8_t i2c_addr, uint8_t *buffer, int len); + +#endif |
