浏览代码

Merge pull request #2057 from Wurstnase/serial_wait

add plan buffer remaining for 'P' and block buffer remaining 'B'
Scott Lahteine 9 年前
父节点
当前提交
19166a92e4
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2
    1
      Marlin/Marlin_main.cpp

+ 2
- 1
Marlin/Marlin_main.cpp 查看文件

@@ -5717,7 +5717,8 @@ void ok_to_send() {
5717 5717
   SERIAL_PROTOCOLPGM(MSG_OK);
5718 5718
   #ifdef ADVANCED_OK
5719 5719
     SERIAL_PROTOCOLPGM(" N"); SERIAL_PROTOCOL(gcode_LastN);
5720
-    SERIAL_PROTOCOLPGM(" P"); SERIAL_PROTOCOL(BUFSIZE - commands_in_queue);
5720
+    SERIAL_PROTOCOLPGM(" P"); SERIAL_PROTOCOL(int(BLOCK_BUFFER_SIZE - movesplanned() - 1));
5721
+    SERIAL_PROTOCOLPGM(" B"); SERIAL_PROTOCOL(BUFSIZE - commands_in_queue);
5721 5722
   #endif
5722 5723
   SERIAL_EOL;  
5723 5724
 }

正在加载...
取消
保存