浏览代码

Fixed closed-loop planner stall (#13005)

Sam Lane 6 年前
父节点
当前提交
b35a7c2c87
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      Marlin/src/module/planner.cpp

+ 1
- 1
Marlin/src/module/planner.cpp 查看文件

@@ -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
 }

正在加载...
取消
保存