Browse Source

Use moves_free in ok_to_send

pull/1/head
Scott Lahteine 5 years ago
parent
commit
1ab6f910b6
  1. 2
      Marlin/src/gcode/queue.cpp

2
Marlin/src/gcode/queue.cpp

@ -253,7 +253,7 @@ void GCodeQueue::ok_to_send() {
while (NUMERIC_SIGNED(*p)) while (NUMERIC_SIGNED(*p))
SERIAL_ECHO(*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)); SERIAL_ECHOPAIR(" B", int(BUFSIZE - length));
#endif #endif
SERIAL_EOL(); SERIAL_EOL();

Loading…
Cancel
Save