Explorar el Código

🐛 Fix G33 homing current (#22909)

ellensp hace 3 años
padre
commit
02dc7a6387
No account linked to committer's email address
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2
    2
      Marlin/src/gcode/calibrate/G33.cpp

+ 2
- 2
Marlin/src/gcode/calibrate/G33.cpp Ver fichero

@@ -73,9 +73,9 @@ float dcr;
73 73
 
74 74
 void ac_home() {
75 75
   endstops.enable(true);
76
-  TERN_(SENSORLESS_HOMING, probe.set_homing_current(true));
76
+  TERN_(HAS_DELTA_SENSORLESS_PROBING, probe.set_homing_current(true));
77 77
   home_delta();
78
-  TERN_(SENSORLESS_HOMING, probe.set_homing_current(false));
78
+  TERN_(HAS_DELTA_SENSORLESS_PROBING, probe.set_homing_current(false));
79 79
   endstops.not_homing();
80 80
 }
81 81
 

Loading…
Cancelar
Guardar