aboutsummaryrefslogtreecommitdiffstats
path: root/src/i2ccmds.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/i2ccmds.h')
-rw-r--r--src/i2ccmds.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/i2ccmds.h b/src/i2ccmds.h
new file mode 100644
index 00000000..49c05c93
--- /dev/null
+++ b/src/i2ccmds.h
@@ -0,0 +1,13 @@
+#ifndef __I2CCMDS_H
+#define __I2CCMDS_H
+
+#include <inttypes.h>
+#include "board/gpio.h" // i2c_config
+
+struct i2cdev_s {
+ struct i2c_config i2c_config;
+};
+
+struct i2cdev_s *i2cdev_oid_lookup(uint8_t oid);
+
+#endif