The unified diff between revisions [b85a3bbc..] and [64de686d..] 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 [64de686d701acb9539dc52fe0bff299405612ab0]
#
# patch "i2c.h"
#  from [bcffa252b76002931a95d727ede2f201d1a6f614]
#    to [096c6ddae7948e9802621e5cda6f7289fd917cab]
#
============================================================
--- i2c.h	bcffa252b76002931a95d727ede2f201d1a6f614
+++ i2c.h	096c6ddae7948e9802621e5cda6f7289fd917cab
@@ -2,16 +2,26 @@
 #define __I2C_H
 
 #include "types.h"
+
+#define I2C_IN_PROGRESS 0
+#define I2C_SUCCESS     1
+#define I2C_FAIL        2
+
+typedef int i2c_result;
+
+struct i2c_transaction {
+	int address;	/* i2c first byte, including address and r/w flag */
+	int bytes;	/* number of bytes to read or write */
+	unsigned char *data;	/* pointer to the data */
+	i2c_result *result; /* pointer to store the result */
+	struct i2c_transaction *next; /* NULL or next transaction */
+};
+
+
 void init_i2c(void);
-extern int i2cstat;
-int i2c_wait(void);
-void i2c_go(void);
 int i2c_conreg(void);
 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);
-void i2c_send_stop(void);
+bool i2c_start_transaction(struct i2c_transaction *t);
+bool i2c_busy(void);
 
 #endif /* __I2C_H */