소스 검색

Some cleanup ahead of BLTOUCH support

Scott Lahteine 8 년 전
부모
커밋
176b9627c7
1개의 변경된 파일5개의 추가작업 그리고 5개의 파일을 삭제
  1. 5
    5
      Marlin/stepper.cpp

+ 5
- 5
Marlin/stepper.cpp 파일 보기

@@ -359,11 +359,11 @@ void Stepper::isr() {
359 359
   if (current_block) {
360 360
 
361 361
     // Update endstops state, if enabled
362
-    #if HAS_BED_PROBE
363
-      if (endstops.enabled || endstops.z_probe_enabled) endstops.update();
364
-    #else
365
-      if (endstops.enabled) endstops.update();
366
-    #endif
362
+    if (endstops.enabled
363
+      #if HAS_BED_PROBE
364
+        || endstops.z_probe_enabled
365
+      #endif
366
+    ) endstops.update();
367 367
 
368 368
     // Take multiple steps per interrupt (For high speed moves)
369 369
     for (int8_t i = 0; i < step_loops; i++) {

Loading…
취소
저장