Fix typo
This commit is contained in:
parent
80c640deb9
commit
6bf2aebf04
|
|
@ -414,7 +414,7 @@ extern void print_physical_coordinates();
|
|||
extern void print_mesh_bed_leveling_table();
|
||||
|
||||
extern void stop_and_save_print_to_ram(float z_move, float e_move);
|
||||
void restore_extruder_temperture_from_ram();
|
||||
void restore_extruder_temperature_from_ram();
|
||||
extern void restore_print_from_ram_and_continue(float e_move);
|
||||
extern void cancel_saved_printing();
|
||||
|
||||
|
|
|
|||
|
|
@ -11172,7 +11172,7 @@ void stop_and_save_print_to_ram(float z_move, float e_move)
|
|||
}
|
||||
}
|
||||
|
||||
void restore_extruder_temperture_from_ram() {
|
||||
void restore_extruder_temperature_from_ram() {
|
||||
if (degTargetHotend(saved_active_extruder) != saved_extruder_temperature)
|
||||
{
|
||||
setTargetHotendSafe(saved_extruder_temperature, saved_active_extruder);
|
||||
|
|
|
|||
|
|
@ -6010,7 +6010,7 @@ void print_stop()
|
|||
if (isPrintPaused)
|
||||
{
|
||||
// Restore temperature saved in ram after pausing print
|
||||
restore_extruder_temperture_from_ram();
|
||||
restore_extruder_temperature_from_ram();
|
||||
}
|
||||
MMU2::mmu2.unload(); //M702 C
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue