From 304664e3a7db1809ff29e525cc2052dad6256ffa Mon Sep 17 00:00:00 2001 From: root Date: Fri, 31 Dec 1999 19:45:44 -0500 Subject: add better typing to I2C code, add I2C test routine in response.c --- i2c.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'i2c.c') diff --git a/i2c.c b/i2c.c index 02e5812..fc9d48a 100644 --- a/i2c.c +++ b/i2c.c @@ -4,12 +4,13 @@ #include #include #include +#include #define I2C_BUS "/dev/i2c-3" -int I2C_Write(int address, int value) { +int I2C_Write(gulong address, guchar value) { struct i2c_smbus_ioctl_data argswrite; @@ -29,7 +30,7 @@ int I2C_Write(int address, int value) { } -int I2C_Read(int address) { +guchar I2C_Read(gulong address) { union i2c_smbus_data data; struct i2c_smbus_ioctl_data argsread; -- cgit