Don't deploy probe on Z Axis homing if Z_PROBE_AND_ENDSTOP is enabled,
unless Z_SAFE_HOMING is.
This commit is contained in:
parent
666fad3494
commit
62834a1c43
@ -1493,20 +1493,18 @@ static void homeaxis(int axis) {
|
|||||||
|
|
||||||
|
|
||||||
#ifndef Z_PROBE_SLED
|
#ifndef Z_PROBE_SLED
|
||||||
// Engage Servo endstop if enabled and we are not using Z_PROBE_AND_ENDSTOP
|
// Engage Servo endstop if enabled and we are not using Z_PROBE_AND_ENDSTOP unless we are using Z_SAFE_HOMING
|
||||||
#ifndef Z_PROBE_AND_ENDSTOP
|
#ifdef SERVO_ENDSTOPS && (defined (Z_SAFE_HOMING) || ! defined (Z_PROBE_AND_ENDSTOP))
|
||||||
#ifdef SERVO_ENDSTOPS
|
#if SERVO_LEVELING
|
||||||
#if SERVO_LEVELING
|
|
||||||
if (axis==Z_AXIS) {
|
if (axis==Z_AXIS) {
|
||||||
engage_z_probe();
|
engage_z_probe();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
#endif
|
#endif
|
||||||
if (servo_endstops[axis] > -1) {
|
if (servo_endstops[axis] > -1) {
|
||||||
servos[servo_endstops[axis]].write(servo_endstop_angles[axis * 2]);
|
servos[servo_endstops[axis]].write(servo_endstop_angles[axis * 2]);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
#endif // Z_PROBE_AND_ENDSTOP
|
|
||||||
#endif // Z_PROBE_SLED
|
#endif // Z_PROBE_SLED
|
||||||
#ifdef Z_DUAL_ENDSTOPS
|
#ifdef Z_DUAL_ENDSTOPS
|
||||||
if (axis==Z_AXIS) In_Homing_Process(true);
|
if (axis==Z_AXIS) In_Homing_Process(true);
|
||||||
|
Loading…
Reference in New Issue
Block a user