mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-01-18 07:29:33 +00:00
Don't disable Z_RAISE_BEFORE_HOMING when Z_PROBE_AND_ENDSTOP is enabled.
This commit is contained in:
parent
cba5692673
commit
992b07ca57
1 changed files with 0 additions and 2 deletions
|
@ -2032,12 +2032,10 @@ inline void gcode_G28() {
|
|||
if (home_all_axis || homeZ) {
|
||||
// Raise Z before homing Z? Shouldn't this happen before homing X or Y?
|
||||
#if defined(Z_RAISE_BEFORE_HOMING) && Z_RAISE_BEFORE_HOMING > 0
|
||||
#ifndef Z_PROBE_AND_ENDSTOP
|
||||
destination[Z_AXIS] = -Z_RAISE_BEFORE_HOMING * home_dir(Z_AXIS); // Set destination away from bed
|
||||
feedrate = max_feedrate[Z_AXIS];
|
||||
line_to_destination();
|
||||
st_synchronize();
|
||||
#endif
|
||||
#endif
|
||||
HOMEAXIS(Z);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue