Fix the delta homing issue (#13001)
This commit is contained in:
parent
c0a6f013de
commit
8fff2fad23
2 changed files with 10 additions and 6 deletions
|
|
@ -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();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue