mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-01-17 23:18:34 +00:00
Use moves_free in ok_to_send
This commit is contained in:
parent
c505626c42
commit
3543873da7
1 changed files with 1 additions and 1 deletions
|
@ -253,7 +253,7 @@ void GCodeQueue::ok_to_send() {
|
|||
while (NUMERIC_SIGNED(*p))
|
||||
SERIAL_ECHO(*p++);
|
||||
}
|
||||
SERIAL_ECHOPAIR_P(SP_P_STR, int(BLOCK_BUFFER_SIZE - planner.movesplanned() - 1));
|
||||
SERIAL_ECHOPAIR_P(SP_P_STR, int(planner.moves_free()));
|
||||
SERIAL_ECHOPAIR(" B", int(BUFSIZE - length));
|
||||
#endif
|
||||
SERIAL_EOL();
|
||||
|
|
Loading…
Reference in a new issue