Explorar el Código

Add sensorless homing delay to home_z_safely

Based on #9705
Scott Lahteine hace 7 años
padre
commit
3af988a7f3
Se han modificado 1 ficheros con 4 adiciones y 0 borrados
  1. 4
    0
      Marlin/src/gcode/calibrate/G28.cpp

+ 4
- 0
Marlin/src/gcode/calibrate/G28.cpp Ver fichero

@@ -106,6 +106,10 @@
106 106
         active_extruder_parked = false;
107 107
       #endif
108 108
 
109
+      #if ENABLED(SENSORLESS_HOMING)
110
+        safe_delay(500); // Short delay needed to settle
111
+      #endif
112
+
109 113
       do_blocking_move_to_xy(destination[X_AXIS], destination[Y_AXIS]);
110 114
       HOMEAXIS(Z);
111 115
     }

Loading…
Cancelar
Guardar