The unified diff between revisions [b85a3bbc..] and [dcfa34d1..] is displayed below. It can also be downloaded as a raw diff.

This diff has been restricted to the following files: 'i2c.h'

#
# old_revision [b85a3bbccc40f21e02f50101af764be93eeb9538]
# new_revision [dcfa34d1bbf576aab0f0d0ed1b0c64dc6160ee5b]
#
# patch "i2c.h"
#  from [bcffa252b76002931a95d727ede2f201d1a6f614]
#    to [383d50d6e5547f52b22d5a878835d6c21926f031]
#
============================================================
--- i2c.h	bcffa252b76002931a95d727ede2f201d1a6f614
+++ i2c.h	383d50d6e5547f52b22d5a878835d6c21926f031
@@ -10,8 +10,8 @@ bool i2c_send_address(int addr, bool wri
 int i2c_statreg(void);
 bool i2c_send_start(void);
 bool i2c_send_address(int addr, bool write);
-bool i2c_send_data(int data);
-bool i2c_receive_data(int *data, bool last);
+bool i2c_send_data(unsigned int data);
+bool i2c_receive_data(unsigned int *data, bool last);
 void i2c_send_stop(void);
 
 #endif /* __I2C_H */