Add a character to the end
| 281 | |
| 282 | // Add a character to the end |
| 283 | bool GCodeBuffer::Put(char c) noexcept |
| 284 | { |
| 285 | #if HAS_SBC_INTERFACE |
| 286 | machineState->lastCodeFromSbc = false; |
| 287 | isBinaryBuffer = false; |
| 288 | #endif |
| 289 | return stringParser.Put(c); |
| 290 | } |
| 291 | |
| 292 | // Decode the command in the buffer when it is complete |
| 293 | void GCodeBuffer::DecodeCommand() noexcept |