소스 검색

🐛 Fix G33 homing current (#22909)

ellensp 3 년 전
부모
커밋
02dc7a6387
No account linked to committer's email address
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2
    2
      Marlin/src/gcode/calibrate/G33.cpp

+ 2
- 2
Marlin/src/gcode/calibrate/G33.cpp 파일 보기

@@ -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…
취소
저장