| 956 | |
| 957 | void injectCommands_P(PGM_P const gcode) { queue.inject_P(gcode); } |
| 958 | void injectCommands(char * const gcode) { queue.inject(gcode); } |
| 959 | |
| 960 | bool commandsInQueue() { return (planner.has_blocks_queued() || queue.has_commands_queued()); } |
| 961 |