Fixed EEPROM CRC (#8283)

Fix EEPROM reversion.
master
Rowan Meara 7 years ago committed by Roxy-3D
parent 12151e62ee
commit 8e8787ad63

@ -1088,7 +1088,7 @@ void MarlinSettings::postprocess() {
stepperE4.setCurrent(val, R_SENSE, HOLD_MULTIPLIER);
#endif
#else
for (uint8_t q = 11; --q;) EEPROM_READ(val);
for (uint8_t q = 0; q < 11; q++) EEPROM_READ(val);
#endif
//

Loading…
Cancel
Save