Browse Source

Fix EEPROM crc (#8284)

Rowan Meara 6 years ago
parent
commit
172c36f517
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/module/configuration_store.cpp

+ 1
- 1
Marlin/src/module/configuration_store.cpp View File

@@ -1059,7 +1059,7 @@ void MarlinSettings::postprocess() {
1059 1059
           stepperE4.setCurrent(val, R_SENSE, HOLD_MULTIPLIER);
1060 1060
         #endif
1061 1061
       #else
1062
-        for (uint8_t q = 11; q--;) EEPROM_READ(val);
1062
+        for (uint8_t q = 0; q < 11; q++) EEPROM_READ(val);
1063 1063
       #endif
1064 1064
 
1065 1065
       //

Loading…
Cancel
Save