Explorar o código

Fix detection of EEPROM reset in some keyboards (#17970)

Wilba %!s(int64=4) %!d(string=hai) anos
pai
achega
8a24fbbdae

+ 3 - 3
keyboards/cannonkeys/satisfaction75/satisfaction75.c

@@ -348,9 +348,9 @@ void custom_config_load(){
 // Called from matrix_init_kb() if not VIA_ENABLE
 // Called from matrix_init_kb() if not VIA_ENABLE
 void via_init_kb(void)
 void via_init_kb(void)
 {
 {
-  // If the EEPROM has the magic, the data is good.
-  // OK to load from EEPROM.
-  if (via_eeprom_is_valid()) {
+  // This checks both an EEPROM reset (from bootmagic lite, keycodes)
+  // and also firmware build date (from via_eeprom_is_valid())
+  if (eeconfig_is_enabled()) {
     custom_config_load();
     custom_config_load();
   } else	{
   } else	{
 #ifdef DYNAMIC_KEYMAP_ENABLE
 #ifdef DYNAMIC_KEYMAP_ENABLE

+ 3 - 3
keyboards/mxss/mxss_frontled.c

@@ -39,9 +39,9 @@ __attribute__ ((weak))
 size_t lc_size = sizeof(layer_colors) / sizeof(hs_set);
 size_t lc_size = sizeof(layer_colors) / sizeof(hs_set);
 
 
 void fled_init(void) {
 void fled_init(void) {
-    // If EEPROM config exists, load it
-    // If VIA EEPROM exists, FLED config should too
-    if (via_eeprom_is_valid()) {
+    // This checks both an EEPROM reset (from bootmagic lite, keycodes)
+    // and also firmware build date (from via_eeprom_is_valid())
+    if (eeconfig_is_enabled()) {
         fled_load_conf();
         fled_load_conf();
     // Else, default config
     // Else, default config
     } else {
     } else {

+ 3 - 3
keyboards/wilba_tech/wt70_jb/wt70_jb.c

@@ -38,9 +38,9 @@ bool led_update_kb(led_t led_state) {
 // Called from matrix_init_kb() if not VIA_ENABLE
 // Called from matrix_init_kb() if not VIA_ENABLE
 void via_init_kb(void)
 void via_init_kb(void)
 {
 {
-    // If the EEPROM has the magic, the data is good.
-    // OK to load from EEPROM
-    if (via_eeprom_is_valid()) {
+    // This checks both an EEPROM reset (from bootmagic lite, keycodes)
+    // and also firmware build date (from via_eeprom_is_valid())
+    if (eeconfig_is_enabled()) {
     } else	{
     } else	{
         // Cache "first execution" state so we can do something
         // Cache "first execution" state so we can do something
         // specific after QMK initialization has done its thing.
         // specific after QMK initialization has done its thing.

+ 3 - 3
keyboards/wilba_tech/wt_main.c

@@ -35,9 +35,9 @@
 // Called from matrix_init_kb() if not VIA_ENABLE
 // Called from matrix_init_kb() if not VIA_ENABLE
 void via_init_kb(void)
 void via_init_kb(void)
 {
 {
-    // If the EEPROM has the magic, the data is good.
-    // OK to load from EEPROM
-    if (via_eeprom_is_valid()) {
+    // This checks both an EEPROM reset (from bootmagic lite, keycodes)
+    // and also firmware build date (from via_eeprom_is_valid())
+    if (eeconfig_is_enabled()) {
 #if RGB_BACKLIGHT_ENABLED || MONO_BACKLIGHT_ENABLED
 #if RGB_BACKLIGHT_ENABLED || MONO_BACKLIGHT_ENABLED
         backlight_config_load();
         backlight_config_load();
 #endif // RGB_BACKLIGHT_ENABLED || MONO_BACKLIGHT_ENABLED
 #endif // RGB_BACKLIGHT_ENABLED || MONO_BACKLIGHT_ENABLED