diff options
author | Joel Challis <git@zvecr.com> | 2020-01-29 22:33:15 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-29 17:33:15 -0500 |
commit | 1249594cf0b09a45f28593c75f9d8f413ccf0424 (patch) | |
tree | 9eeba2cfe8ab6f44d5f4323eb42b3adb52eee7c7 /keyboards/minidox/split_util.h | |
parent | e04c5edaaef88a94c3a0fca257fcc3d2e8e50bda (diff) | |
download | qmk_firmware-1249594cf0b09a45f28593c75f9d8f413ccf0424.tar.gz qmk_firmware-1249594cf0b09a45f28593c75f9d8f413ccf0424.zip |
Refactor minidox to use split_common (#7924)
* Initial refactor of minidox to split_common
* post rebase fixes
Diffstat (limited to 'keyboards/minidox/split_util.h')
-rw-r--r-- | keyboards/minidox/split_util.h | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/keyboards/minidox/split_util.h b/keyboards/minidox/split_util.h deleted file mode 100644 index 595a0659e..000000000 --- a/keyboards/minidox/split_util.h +++ /dev/null | |||
@@ -1,20 +0,0 @@ | |||
1 | #ifndef SPLIT_KEYBOARD_UTIL_H | ||
2 | #define SPLIT_KEYBOARD_UTIL_H | ||
3 | |||
4 | #include <stdbool.h> | ||
5 | #include "eeconfig.h" | ||
6 | |||
7 | #define SLAVE_I2C_ADDRESS 0x32 | ||
8 | |||
9 | extern volatile bool isLeftHand; | ||
10 | |||
11 | // slave version of matix scan, defined in matrix.c | ||
12 | void matrix_slave_scan(void); | ||
13 | |||
14 | void split_keyboard_setup(void); | ||
15 | bool has_usb(void); | ||
16 | void keyboard_slave_loop(void); | ||
17 | |||
18 | void matrix_master_OLED_init (void); | ||
19 | |||
20 | #endif | ||