summaryrefslogtreecommitdiffstats
path: root/keyboards/lets_splitv2/i2c.h
diff options
context:
space:
mode:
authorclimbalima <climbalima@gmail.com>2016-11-11 00:19:13 +0100
committerclimbalima <climbalima@gmail.com>2016-11-11 00:19:13 +0100
commit6e27f6fbde47804035d508eb84690ed7ee9acee7 (patch)
tree53444134c444afe05a86ceae827b73e99d216d84 /keyboards/lets_splitv2/i2c.h
parent21e443101f4873a813d33e50486d4e9591e89f4e (diff)
downloadqmk_firmware-6e27f6fbde47804035d508eb84690ed7ee9acee7.tar.gz
qmk_firmware-6e27f6fbde47804035d508eb84690ed7ee9acee7.tar.xz
Changes to be committed:
new file: keyboards/lets_splitv2/Makefile new file: keyboards/lets_splitv2/config.h new file: keyboards/lets_splitv2/i2c.c new file: keyboards/lets_splitv2/i2c.h new file: keyboards/lets_splitv2/imgs/split-keyboard-i2c-schematic.png new file: keyboards/lets_splitv2/imgs/split-keyboard-serial-schematic.png new file: keyboards/lets_splitv2/keymaps/default/keymap.c new file: keyboards/lets_splitv2/lets_split.c new file: keyboards/lets_splitv2/lets_split.h new file: keyboards/lets_splitv2/matrix.c new file: keyboards/lets_splitv2/pro_micro.h new file: keyboards/lets_splitv2/readme.md new file: keyboards/lets_splitv2/serial.c new file: keyboards/lets_splitv2/serial.h new file: keyboards/lets_splitv2/split_util.c new file: keyboards/lets_splitv2/split_util.h new file: keyboards/maxipad/Makefile new file: keyboards/maxipad/config.h new file: keyboards/maxipad/keymaps/default/Makefile new file: keyboards/maxipad/keymaps/default/config.h new file: keyboards/maxipad/keymaps/default/keymap.c new file: keyboards/maxipad/keymaps/default/readme.md new file: keyboards/maxipad/maxipad.c new file: keyboards/maxipad/maxipad.h new file: keyboards/maxipad/readme.md
Diffstat (limited to 'keyboards/lets_splitv2/i2c.h')
-rw-r--r--keyboards/lets_splitv2/i2c.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/keyboards/lets_splitv2/i2c.h b/keyboards/lets_splitv2/i2c.h
new file mode 100644
index 000000000..08ce4b009
--- /dev/null
+++ b/keyboards/lets_splitv2/i2c.h
@@ -0,0 +1,31 @@
+#ifndef I2C_H
+#define I2C_H
+
+#include <stdint.h>
+
+#ifndef F_CPU
+#define F_CPU 16000000UL
+#endif
+
+#define I2C_READ 1
+#define I2C_WRITE 0
+
+#define I2C_ACK 1
+#define I2C_NACK 0
+
+#define SLAVE_BUFFER_SIZE 0x10
+
+// i2c SCL clock frequency
+#define SCL_CLOCK 100000L
+
+extern volatile uint8_t i2c_slave_buffer[SLAVE_BUFFER_SIZE];
+
+void i2c_master_init(void);
+uint8_t i2c_master_start(uint8_t address);
+void i2c_master_stop(void);
+uint8_t i2c_master_write(uint8_t data);
+uint8_t i2c_master_read(int);
+void i2c_reset_state(void);
+void i2c_slave_init(uint8_t address);
+
+#endif