diff options
Diffstat (limited to 'quantum/rgblight.c')
-rw-r--r-- | quantum/rgblight.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/quantum/rgblight.c b/quantum/rgblight.c index 7f9e330d3..e6f14487c 100644 --- a/quantum/rgblight.c +++ b/quantum/rgblight.c | |||
@@ -24,7 +24,7 @@ | |||
24 | # include "eeprom.h" | 24 | # include "eeprom.h" |
25 | #endif | 25 | #endif |
26 | #ifdef STM32_EEPROM_ENABLE | 26 | #ifdef STM32_EEPROM_ENABLE |
27 | # include "hal.h" | 27 | # include <hal.h> |
28 | # include "eeprom_stm32.h" | 28 | # include "eeprom_stm32.h" |
29 | #endif | 29 | #endif |
30 | #include "wait.h" | 30 | #include "wait.h" |
@@ -34,7 +34,7 @@ | |||
34 | #include "color.h" | 34 | #include "color.h" |
35 | #include "debug.h" | 35 | #include "debug.h" |
36 | #include "led_tables.h" | 36 | #include "led_tables.h" |
37 | #include "lib/lib8tion/lib8tion.h" | 37 | #include <lib/lib8tion/lib8tion.h> |
38 | #ifdef VELOCIKEY_ENABLE | 38 | #ifdef VELOCIKEY_ENABLE |
39 | # include "velocikey.h" | 39 | # include "velocikey.h" |
40 | #endif | 40 | #endif |
@@ -983,7 +983,7 @@ void rgblight_task(void) { | |||
983 | # ifndef RGBLIGHT_BREATHE_TABLE_SIZE | 983 | # ifndef RGBLIGHT_BREATHE_TABLE_SIZE |
984 | # define RGBLIGHT_BREATHE_TABLE_SIZE 256 // 256 or 128 or 64 | 984 | # define RGBLIGHT_BREATHE_TABLE_SIZE 256 // 256 or 128 or 64 |
985 | # endif | 985 | # endif |
986 | # include <rgblight_breathe_table.h> | 986 | # include "rgblight_breathe_table.h" |
987 | # endif | 987 | # endif |
988 | 988 | ||
989 | __attribute__((weak)) const uint8_t RGBLED_BREATHING_INTERVALS[] PROGMEM = {30, 20, 10, 5}; | 989 | __attribute__((weak)) const uint8_t RGBLED_BREATHING_INTERVALS[] PROGMEM = {30, 20, 10, 5}; |