Merge pull request #2057 from Wurstnase/serial_wait
add plan buffer remaining for 'P' and block buffer remaining 'B'
This commit is contained in:
commit
19166a92e4
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user