diff options
Diffstat (limited to 'keyboards/dc01/left/i2c.h')
-rw-r--r-- | keyboards/dc01/left/i2c.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/keyboards/dc01/left/i2c.h b/keyboards/dc01/left/i2c.h new file mode 100644 index 000000000..0d93e4eca --- /dev/null +++ b/keyboards/dc01/left/i2c.h | |||
@@ -0,0 +1,28 @@ | |||
1 | #pragma once | ||
2 | |||
3 | #include <stdint.h> | ||
4 | |||
5 | #ifndef F_CPU | ||
6 | #define F_CPU 16000000UL | ||
7 | #endif | ||
8 | |||
9 | #define I2C_READ 1 | ||
10 | #define I2C_WRITE 0 | ||
11 | |||
12 | #define I2C_ACK 1 | ||
13 | #define I2C_NACK 0 | ||
14 | |||
15 | #define SLAVE_BUFFER_SIZE 0x10 | ||
16 | |||
17 | // i2c SCL clock frequency | ||
18 | #define SCL_CLOCK 400000L | ||
19 | |||
20 | extern volatile uint8_t i2c_slave_buffer[SLAVE_BUFFER_SIZE]; | ||
21 | |||
22 | void i2c_master_init(void); | ||
23 | uint8_t i2c_master_start(uint8_t address); | ||
24 | void i2c_master_stop(void); | ||
25 | uint8_t i2c_master_write(uint8_t data); | ||
26 | uint8_t i2c_master_read(int); | ||
27 | void i2c_reset_state(void); | ||
28 | void i2c_slave_init(uint8_t address); | ||