ソースを参照

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
 }

読み込み中…
キャンセル
保存