Skip to content
Snippets Groups Projects
Commit ddeca7a3 authored by raTmole's avatar raTmole Committed by Scott Lahteine
Browse files

Fix resume from power loss G-Code. (#13035)

parent 02ab66fc
Branches
Tags
No related merge requests found
...@@ -235,7 +235,7 @@ void PrintJobRecovery::resume() { ...@@ -235,7 +235,7 @@ void PrintJobRecovery::resume() {
// Set Z to 0, raise Z by 2mm, and Home (XY only for Cartesian) with no raise // Set Z to 0, raise Z by 2mm, and Home (XY only for Cartesian) with no raise
// (Only do simulated homing in Marlin Dev Mode.) // (Only do simulated homing in Marlin Dev Mode.)
gcode.process_subcommands_now_P(PSTR("G92.0 Z0|G1 Z" STRINGIFY(RECOVERY_ZRAISE) "|G28 R0" gcode.process_subcommands_now_P(PSTR("G92.0 Z0\nG1 Z" STRINGIFY(RECOVERY_ZRAISE) "\nG28 R0"
#if ENABLED(MARLIN_DEV_MODE) #if ENABLED(MARLIN_DEV_MODE)
" S" " S"
#elif !IS_KINEMATIC #elif !IS_KINEMATIC
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment