Browse Source

Delay after homing_backoff for CoreXY sensorless homing (#17273)

rado79 5 years ago
parent
commit
bef9b9b07e
No account linked to committer's email address
1 changed files with 7 additions and 0 deletions
  1. 7
    0
      Marlin/src/module/motion.cpp

+ 7
- 0
Marlin/src/module/motion.cpp View File

1779
         #endif
1779
         #endif
1780
         homing_feedrate(axis)
1780
         homing_feedrate(axis)
1781
       );
1781
       );
1782
+
1783
+      #if ENABLED(SENSORLESS_HOMING)
1784
+        planner.synchronize();
1785
+        #if IS_CORE
1786
+          if (axis != NORMAL_AXIS) safe_delay(200);  // Short delay to allow belts to spring back
1787
+        #endif
1788
+      #endif
1782
     }
1789
     }
1783
   #endif
1790
   #endif
1784
 
1791
 

Loading…
Cancel
Save