Browse Source

Fixed EEPROM CRC (#8283)

Fix EEPROM reversion.
Rowan Meara 7 years ago
parent
commit
8e8787ad63
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/configuration_store.cpp

+ 1
- 1
Marlin/configuration_store.cpp View File

1088
           stepperE4.setCurrent(val, R_SENSE, HOLD_MULTIPLIER);
1088
           stepperE4.setCurrent(val, R_SENSE, HOLD_MULTIPLIER);
1089
         #endif
1089
         #endif
1090
       #else
1090
       #else
1091
-        for (uint8_t q = 11; --q;) EEPROM_READ(val);
1091
+        for (uint8_t q = 0; q < 11; q++) EEPROM_READ(val);
1092
       #endif
1092
       #endif
1093
 
1093
 
1094
       //
1094
       //

Loading…
Cancel
Save