diff options
Diffstat (limited to 'tmk_core/common/avr/eeconfig.c')
-rw-r--r-- | tmk_core/common/avr/eeconfig.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tmk_core/common/avr/eeconfig.c b/tmk_core/common/avr/eeconfig.c index c5391f5cf..656938fb3 100644 --- a/tmk_core/common/avr/eeconfig.c +++ b/tmk_core/common/avr/eeconfig.c | |||
@@ -14,7 +14,10 @@ void eeconfig_init(void) | |||
14 | eeprom_update_byte(EECONFIG_BACKLIGHT, 0); | 14 | eeprom_update_byte(EECONFIG_BACKLIGHT, 0); |
15 | #endif | 15 | #endif |
16 | #ifdef AUDIO_ENABLE | 16 | #ifdef AUDIO_ENABLE |
17 | eeprom_update_byte(EECONFIG_AUDIO, 0xFF); // On by default | 17 | eeprom_update_byte(EECONFIG_AUDIO, 0xFF); // On by default |
18 | #endif | ||
19 | #ifdef RGBLIGHT_ENABLE | ||
20 | eeprom_update_dword(EECONFIG_RGBLIGHT, 0); | ||
18 | #endif | 21 | #endif |
19 | } | 22 | } |
20 | 23 | ||