Normalise include statements in core code (#11153)
* Normalise include statements in core code * Missed one
This commit is contained in:
parent
5b5d74a267
commit
501f2fdef1
60 changed files with 99 additions and 79 deletions
|
@ -24,7 +24,7 @@
|
|||
# include "eeprom.h"
|
||||
#endif
|
||||
#ifdef STM32_EEPROM_ENABLE
|
||||
# include "hal.h"
|
||||
# include <hal.h>
|
||||
# include "eeprom_stm32.h"
|
||||
#endif
|
||||
#include "wait.h"
|
||||
|
@ -34,7 +34,7 @@
|
|||
#include "color.h"
|
||||
#include "debug.h"
|
||||
#include "led_tables.h"
|
||||
#include "lib/lib8tion/lib8tion.h"
|
||||
#include <lib/lib8tion/lib8tion.h>
|
||||
#ifdef VELOCIKEY_ENABLE
|
||||
# include "velocikey.h"
|
||||
#endif
|
||||
|
@ -983,7 +983,7 @@ void rgblight_task(void) {
|
|||
# ifndef RGBLIGHT_BREATHE_TABLE_SIZE
|
||||
# define RGBLIGHT_BREATHE_TABLE_SIZE 256 // 256 or 128 or 64
|
||||
# endif
|
||||
# include <rgblight_breathe_table.h>
|
||||
# include "rgblight_breathe_table.h"
|
||||
# endif
|
||||
|
||||
__attribute__((weak)) const uint8_t RGBLED_BREATHING_INTERVALS[] PROGMEM = {30, 20, 10, 5};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue