diff options
author | Joel Challis <git@zvecr.com> | 2021-07-24 19:56:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-24 19:56:45 +0100 |
commit | b5bcd5b0a18079df1252a718588255c62d24a054 (patch) | |
tree | 886b84473e94718fed4de18a6d6c5b5b9e46eb89 /quantum/rgblight.c | |
parent | 145d89ab9192d08b7e22a14105d27988944b7b0c (diff) |
Refactor some platform dependent logic (#13675)
Diffstat (limited to 'quantum/rgblight.c')
-rw-r--r-- | quantum/rgblight.c | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/quantum/rgblight.c b/quantum/rgblight.c index baa10ec416..04bbb1283b 100644 --- a/quantum/rgblight.c +++ b/quantum/rgblight.c @@ -16,17 +16,6 @@ #include <math.h> #include <string.h> #include <stdlib.h> -#ifdef __AVR__ -# include <avr/eeprom.h> -# include <avr/interrupt.h> -#endif -#ifdef EEPROM_ENABLE -# include "eeprom.h" -#endif -#ifdef STM32_EEPROM_ENABLE -# include <hal.h> -# include "eeprom_stm32.h" -#endif #include "wait.h" #include "progmem.h" #include "sync_timer.h" @@ -35,6 +24,9 @@ #include "debug.h" #include "led_tables.h" #include <lib/lib8tion/lib8tion.h> +#ifdef EEPROM_ENABLE +# include "eeprom.h" +#endif #ifdef VELOCIKEY_ENABLE # include "velocikey.h" #endif |