diff options
Diffstat (limited to 'keyboards/helix')
| -rw-r--r-- | keyboards/helix/local_drivers/ssd1306.c | 2 | ||||
| -rw-r--r-- | keyboards/helix/rev1/config.h | 2 | ||||
| -rw-r--r-- | keyboards/helix/rev1/keymaps/OLED_sample/keymap.c | 2 | ||||
| -rw-r--r-- | keyboards/helix/rev2/keymaps/five_rows/oled_display.c | 4 | ||||
| -rw-r--r-- | keyboards/helix/rev2/split_scomm.c | 4 | ||||
| -rw-r--r-- | keyboards/helix/rev3_5rows/keymaps/five_rows/oled_display.c | 4 |
6 files changed, 9 insertions, 9 deletions
diff --git a/keyboards/helix/local_drivers/ssd1306.c b/keyboards/helix/local_drivers/ssd1306.c index c6fc4b785..1cfb38037 100644 --- a/keyboards/helix/local_drivers/ssd1306.c +++ b/keyboards/helix/local_drivers/ssd1306.c | |||
| @@ -8,7 +8,7 @@ | |||
| 8 | #ifndef LOCAL_GLCDFONT | 8 | #ifndef LOCAL_GLCDFONT |
| 9 | #include "common/glcdfont.c" | 9 | #include "common/glcdfont.c" |
| 10 | #else | 10 | #else |
| 11 | #include <helixfont.h> | 11 | #include "helixfont.h" |
| 12 | #endif | 12 | #endif |
| 13 | #ifdef PROTOCOL_LUFA | 13 | #ifdef PROTOCOL_LUFA |
| 14 | #include "lufa.h" | 14 | #include "lufa.h" |
diff --git a/keyboards/helix/rev1/config.h b/keyboards/helix/rev1/config.h index 6c6ebea68..7e9616ba1 100644 --- a/keyboards/helix/rev1/config.h +++ b/keyboards/helix/rev1/config.h | |||
| @@ -26,7 +26,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 26 | #define PRODUCT Helix Alpha | 26 | #define PRODUCT Helix Alpha |
| 27 | #define DESCRIPTION A split keyboard for the cheap makers | 27 | #define DESCRIPTION A split keyboard for the cheap makers |
| 28 | 28 | ||
| 29 | #include <serial_config.h> | 29 | #include "serial_config.h" |
| 30 | 30 | ||
| 31 | #define HELIX_ROWS 5 | 31 | #define HELIX_ROWS 5 |
| 32 | 32 | ||
diff --git a/keyboards/helix/rev1/keymaps/OLED_sample/keymap.c b/keyboards/helix/rev1/keymaps/OLED_sample/keymap.c index cc73e36fb..6838b90e5 100644 --- a/keyboards/helix/rev1/keymaps/OLED_sample/keymap.c +++ b/keyboards/helix/rev1/keymaps/OLED_sample/keymap.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | #include QMK_KEYBOARD_H | 1 | #include QMK_KEYBOARD_H |
| 2 | #include "bootloader.h" | 2 | #include "bootloader.h" |
| 3 | #include "LUFA/Drivers/Peripheral/TWI.h" | 3 | #include <LUFA/Drivers/Peripheral/TWI.h> |
| 4 | #ifdef AUDIO_ENABLE | 4 | #ifdef AUDIO_ENABLE |
| 5 | #include "audio.h" | 5 | #include "audio.h" |
| 6 | #endif | 6 | #endif |
diff --git a/keyboards/helix/rev2/keymaps/five_rows/oled_display.c b/keyboards/helix/rev2/keymaps/five_rows/oled_display.c index c1f039e5b..127d80cc7 100644 --- a/keyboards/helix/rev2/keymaps/five_rows/oled_display.c +++ b/keyboards/helix/rev2/keymaps/five_rows/oled_display.c | |||
| @@ -17,12 +17,12 @@ | |||
| 17 | #include QMK_KEYBOARD_H | 17 | #include QMK_KEYBOARD_H |
| 18 | #include <stdio.h> | 18 | #include <stdio.h> |
| 19 | #ifdef CONSOLE_ENABLE | 19 | #ifdef CONSOLE_ENABLE |
| 20 | #include <print.h> | 20 | #include "print.h" |
| 21 | #endif | 21 | #endif |
| 22 | #ifdef SSD1306OLED | 22 | #ifdef SSD1306OLED |
| 23 | #include "ssd1306.h" | 23 | #include "ssd1306.h" |
| 24 | #endif | 24 | #endif |
| 25 | #include "string.h" | 25 | #include <string.h> |
| 26 | #include "layer_number.h" | 26 | #include "layer_number.h" |
| 27 | 27 | ||
| 28 | extern int current_default_layer; | 28 | extern int current_default_layer; |
diff --git a/keyboards/helix/rev2/split_scomm.c b/keyboards/helix/rev2/split_scomm.c index ada786796..378781b98 100644 --- a/keyboards/helix/rev2/split_scomm.c +++ b/keyboards/helix/rev2/split_scomm.c | |||
| @@ -5,10 +5,10 @@ | |||
| 5 | #include <stdbool.h> | 5 | #include <stdbool.h> |
| 6 | #include <stdint.h> | 6 | #include <stdint.h> |
| 7 | #include <stddef.h> | 7 | #include <stddef.h> |
| 8 | #include <split_scomm.h> | 8 | #include "split_scomm.h" |
| 9 | #include "serial.h" | 9 | #include "serial.h" |
| 10 | #ifdef CONSOLE_ENABLE | 10 | #ifdef CONSOLE_ENABLE |
| 11 | #include <print.h> | 11 | #include "print.h" |
| 12 | #endif | 12 | #endif |
| 13 | 13 | ||
| 14 | uint8_t volatile serial_slave_buffer[SERIAL_SLAVE_BUFFER_LENGTH] = {0}; | 14 | uint8_t volatile serial_slave_buffer[SERIAL_SLAVE_BUFFER_LENGTH] = {0}; |
diff --git a/keyboards/helix/rev3_5rows/keymaps/five_rows/oled_display.c b/keyboards/helix/rev3_5rows/keymaps/five_rows/oled_display.c index c1f039e5b..127d80cc7 100644 --- a/keyboards/helix/rev3_5rows/keymaps/five_rows/oled_display.c +++ b/keyboards/helix/rev3_5rows/keymaps/five_rows/oled_display.c | |||
| @@ -17,12 +17,12 @@ | |||
| 17 | #include QMK_KEYBOARD_H | 17 | #include QMK_KEYBOARD_H |
| 18 | #include <stdio.h> | 18 | #include <stdio.h> |
| 19 | #ifdef CONSOLE_ENABLE | 19 | #ifdef CONSOLE_ENABLE |
| 20 | #include <print.h> | 20 | #include "print.h" |
| 21 | #endif | 21 | #endif |
| 22 | #ifdef SSD1306OLED | 22 | #ifdef SSD1306OLED |
| 23 | #include "ssd1306.h" | 23 | #include "ssd1306.h" |
| 24 | #endif | 24 | #endif |
| 25 | #include "string.h" | 25 | #include <string.h> |
| 26 | #include "layer_number.h" | 26 | #include "layer_number.h" |
| 27 | 27 | ||
| 28 | extern int current_default_layer; | 28 | extern int current_default_layer; |
