Przeglądaj źródła

Fixed closed-loop planner stall (#13005)

Sam Lane 6 lat temu
rodzic
commit
b35a7c2c87
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1
    1
      Marlin/src/module/planner.cpp

+ 1
- 1
Marlin/src/module/planner.cpp Wyświetl plik

@@ -1540,7 +1540,7 @@ void Planner::synchronize() {
1540 1540
   while (
1541 1541
     has_blocks_queued() || cleaning_buffer_counter
1542 1542
     #if ENABLED(EXTERNAL_CLOSED_LOOP_CONTROLLER)
1543
-      || !READ(CLOSED_LOOP_MOVE_COMPLETE_PIN)
1543
+      || (READ(CLOSED_LOOP_ENABLE_PIN) && !READ(CLOSED_LOOP_MOVE_COMPLETE_PIN))
1544 1544
     #endif
1545 1545
   ) idle();
1546 1546
 }

Ładowanie…
Anuluj
Zapisz