Write the E parameter length correctly

This commit is contained in:
Scott Lahteine 2016-12-15 21:15:12 -08:00
parent 3bd76f60e4
commit a4f10f59c3

View File

@ -238,7 +238,7 @@ void Config_Postprocess() {
eeprom_checksum = 0; // clear before first "real data"
const uint8_t esteppers = E_STEPPERS;
const uint8_t esteppers = COUNT(planner.axis_steps_per_mm) - XYZ;
EEPROM_WRITE(esteppers);
EEPROM_WRITE(planner.axis_steps_per_mm);