Merge pull request #2057 from Wurstnase/serial_wait

add plan buffer remaining for 'P' and block buffer remaining 'B'
This commit is contained in:
Scott Lahteine 2015-05-14 04:57:08 -07:00
commit 19166a92e4

View file

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