Fix the delta homing issue (#13001)
This commit is contained in:
@@ -4067,7 +4067,11 @@ inline void gcode_G4() {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Move all carriages together linearly until an endstop is hit.
|
// Move all carriages together linearly until an endstop is hit.
|
||||||
current_position[X_AXIS] = current_position[Y_AXIS] = current_position[Z_AXIS] = (delta_height + 10);
|
current_position[X_AXIS] = current_position[Y_AXIS] = current_position[Z_AXIS] = (delta_height + 10
|
||||||
|
#if HAS_BED_PROBE
|
||||||
|
- zprobe_zoffset
|
||||||
|
#endif
|
||||||
|
);
|
||||||
feedrate_mm_s = homing_feedrate(X_AXIS);
|
feedrate_mm_s = homing_feedrate(X_AXIS);
|
||||||
buffer_line_to_current_position();
|
buffer_line_to_current_position();
|
||||||
planner.synchronize();
|
planner.synchronize();
|
||||||
|
Reference in New Issue
Block a user