Procházet zdrojové kódy

Merge pull request #2057 from Wurstnase/serial_wait

add plan buffer remaining for 'P' and block buffer remaining 'B'
Scott Lahteine před 9 roky
rodič
revize
19166a92e4
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  1. 2
    1
      Marlin/Marlin_main.cpp

+ 2
- 1
Marlin/Marlin_main.cpp Zobrazit soubor

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

Loading…
Zrušit
Uložit