Skip to content

Commit a66f035

Browse files
committed
G28 add stow() when in high_speed_mode
It seems like a bad idea to leave it deployed after Z home.
1 parent 59a9aef commit a66f035

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Marlin/src/gcode/calibrate/G28.cpp

+6
Original file line numberDiff line numberDiff line change
@@ -490,6 +490,12 @@ void GcodeSuite::G28() {
490490
#else
491491
homeaxis(Z_AXIS);
492492
#endif
493+
494+
#if ENABLED(BLTOUCH)
495+
// stow() is not automatic in high_speed_mode
496+
if (bltouch.high_speed_mode) probe.stow();
497+
#endif
498+
493499
probe.move_z_after_homing();
494500
}
495501
#endif

0 commit comments

Comments
 (0)