Browse Source

🐛 Fix G33 homing current (#22909)

ellensp 3 years ago
parent
commit
02dc7a6387
No account linked to committer's email address
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      Marlin/src/gcode/calibrate/G33.cpp

+ 2
- 2
Marlin/src/gcode/calibrate/G33.cpp View File

@@ -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…
Cancel
Save