Skip to content

Commit

Permalink
Delay after homing_backoff for CoreXY sensorless homing (#17273)
Browse files Browse the repository at this point in the history
  • Loading branch information
rado79 authored Mar 24, 2020
1 parent edd6f6c commit bef9b9b
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Marlin/src/module/motion.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1779,6 +1779,13 @@ void homeaxis(const AxisEnum axis) {
#endif
homing_feedrate(axis)
);

#if ENABLED(SENSORLESS_HOMING)
planner.synchronize();
#if IS_CORE
if (axis != NORMAL_AXIS) safe_delay(200); // Short delay to allow belts to spring back
#endif
#endif
}
#endif

Expand Down

0 comments on commit bef9b9b

Please sign in to comment.