Fix PLR Z bug affecting Cartesians (#14230)

2.0.x
Robby Candra 6 years ago committed by Scott Lahteine
parent 5ca8d51e12
commit 7e07a3888b

@ -361,7 +361,12 @@ void PrintJobRecovery::resume() {
// Move back to the saved Z
dtostrf(info.current_position[Z_AXIS], 1, 3, str_1);
sprintf_P(cmd, PSTR("G1 Z%s F200"), str_1);
#if Z_HOME_DIR > 0
sprintf_P(cmd, PSTR("G1 Z%s F200"), str_1);
#else
gcode.process_subcommands_now_P(PSTR("G1 Z0 F200"));
sprintf_P(cmd, PSTR("G92.9 Z%s"), str_1);
#endif
gcode.process_subcommands_now(cmd);
// Un-retract

Loading…
Cancel
Save