Browse Source

Write the E parameter length correctly

pull/1/head
Scott Lahteine 8 years ago
parent
commit
a4f10f59c3
  1. 2
      Marlin/configuration_store.cpp

2
Marlin/configuration_store.cpp

@ -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);

Loading…
Cancel
Save