|
@@ -8287,6 +8287,7 @@ void uvlo_()
|
|
|
eeprom_update_float((float*)(EEPROM_EXTRUDER_MULTIPLIER_2), extruder_multiplier[2]);
|
|
|
#endif
|
|
|
#endif
|
|
|
+ eeprom_update_word((uint16_t*)(EEPROM_EXTRUDEMULTIPLY), (uint16_t)extrudemultiply);
|
|
|
|
|
|
|
|
|
if(sd_print) eeprom_update_byte((uint8_t*)EEPROM_UVLO, 1);
|
|
@@ -8502,7 +8503,7 @@ void recover_machine_state_after_power_panic()
|
|
|
extruder_multiplier[2] = eeprom_read_float((float*)(EEPROM_EXTRUDER_MULTIPLIER_2));
|
|
|
#endif
|
|
|
#endif
|
|
|
-
|
|
|
+ extrudemultiply = (int)eeprom_read_word((uint16_t*)(EEPROM_EXTRUDEMULTIPLY));
|
|
|
}
|
|
|
|
|
|
void restore_print_from_eeprom() {
|