aboutsummaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
Diffstat (limited to 'common')
-rw-r--r--common/i2c_message.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/common/i2c_message.h b/common/i2c_message.h
new file mode 100644
index 0000000..c5b4e81
--- /dev/null
+++ b/common/i2c_message.h
@@ -0,0 +1,10 @@
+#ifndef I2C_MESSAGE_H
+#define I2C_MESSAGE_H
+
+#include <stdint.h>
+
+enum i2c_message_t {DBG = 0x00, KBD = 0x01, INVALID = 0xff};
+
+const uint8_t BTLE_WIREADDR = 4;
+
+#endif