Skip to content

Commit

Permalink
Revert G28 Z axis always "trusted"
Browse files Browse the repository at this point in the history
Reverts commit 73ce80a
  • Loading branch information
thinkyhead committed Nov 30, 2020
1 parent 509461b commit c00fde9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Marlin/src/gcode/calibrate/G28.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ void GcodeSuite::G28() {
if (z_homing_height && (doX || doY || TERN0(Z_SAFE_HOMING, doZ))) {
// Raise Z before homing any other axes and z is not already high enough (never lower z)
if (DEBUGGING(LEVELING)) DEBUG_ECHOLNPAIR("Raise Z (before homing) by ", z_homing_height);
do_z_clearance(z_homing_height, true, DISABLED(UNKNOWN_Z_NO_RAISE));
do_z_clearance(z_homing_height, axis_is_trusted(Z_AXIS), DISABLED(UNKNOWN_Z_NO_RAISE));
}

#if ENABLED(QUICK_HOME)
Expand Down

0 comments on commit c00fde9

Please sign in to comment.