Decode the command in the buffer when it is complete
| 291 | |
| 292 | // Decode the command in the buffer when it is complete |
| 293 | void GCodeBuffer::DecodeCommand() noexcept |
| 294 | { |
| 295 | PARSER_OPERATION(DecodeCommand()); |
| 296 | } |
| 297 | |
| 298 | // Check whether the current command is a meta command, or we are skipping a block. Return true if we are and the current line no longer needs to be processed. |
| 299 | bool GCodeBuffer::CheckMetaCommand(const StringRef& reply) THROWS(GCodeException) |
no outgoing calls
no test coverage detected