aboutsummaryrefslogtreecommitdiff
path: root/quantum/rgblight.c
diff options
context:
space:
mode:
Diffstat (limited to 'quantum/rgblight.c')
-rw-r--r--quantum/rgblight.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/quantum/rgblight.c b/quantum/rgblight.c
index cf2666eb4..22dce963c 100644
--- a/quantum/rgblight.c
+++ b/quantum/rgblight.c
@@ -19,6 +19,11 @@
19 #include <avr/eeprom.h> 19 #include <avr/eeprom.h>
20 #include <avr/interrupt.h> 20 #include <avr/interrupt.h>
21#endif 21#endif
22#ifdef STM32_EEPROM_ENABLE
23 #include "hal.h"
24 #include "eeprom.h"
25 #include "eeprom_stm32.h"
26#endif
22#include "wait.h" 27#include "wait.h"
23#include "progmem.h" 28#include "progmem.h"
24#include "timer.h" 29#include "timer.h"
@@ -120,14 +125,14 @@ void setrgb(uint8_t r, uint8_t g, uint8_t b, LED_TYPE *led1) {
120 125
121 126
122uint32_t eeconfig_read_rgblight(void) { 127uint32_t eeconfig_read_rgblight(void) {
123 #ifdef __AVR__ 128 #if defined(__AVR__) || defined(STM32_EEPROM_ENABLE) || defined(PROTOCOL_ARM_ATSAM) || defined(EEPROM_SIZE)
124 return eeprom_read_dword(EECONFIG_RGBLIGHT); 129 return eeprom_read_dword(EECONFIG_RGBLIGHT);
125 #else 130 #else
126 return 0; 131 return 0;
127 #endif 132 #endif
128} 133}
129void eeconfig_update_rgblight(uint32_t val) { 134void eeconfig_update_rgblight(uint32_t val) {
130 #ifdef __AVR__ 135 #if defined(__AVR__) || defined(STM32_EEPROM_ENABLE) || defined(PROTOCOL_ARM_ATSAM) || defined(EEPROM_SIZE)
131 if (eeconfig_read_rgblight() != val) { 136 if (eeconfig_read_rgblight() != val) {
132 eeprom_update_dword(EECONFIG_RGBLIGHT, val); 137 eeprom_update_dword(EECONFIG_RGBLIGHT, val);
133 } 138 }
@@ -333,7 +338,7 @@ void rgblight_disable_noeeprom(void) {
333#ifdef RGBLIGHT_USE_TIMER 338#ifdef RGBLIGHT_USE_TIMER
334 rgblight_timer_disable(); 339 rgblight_timer_disable();
335#endif 340#endif
336 _delay_ms(50); 341 wait_ms(50);
337 rgblight_set(); 342 rgblight_set();
338} 343}
339 344