aboutsummaryrefslogtreecommitdiff
path: root/keyboards/dc01/left/i2c.h
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/dc01/left/i2c.h')
-rw-r--r--keyboards/dc01/left/i2c.h28
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
20extern volatile uint8_t i2c_slave_buffer[SLAVE_BUFFER_SIZE];
21
22void i2c_master_init(void);
23uint8_t i2c_master_start(uint8_t address);
24void i2c_master_stop(void);
25uint8_t i2c_master_write(uint8_t data);
26uint8_t i2c_master_read(int);
27void i2c_reset_state(void);
28void i2c_slave_init(uint8_t address);