Add an entire G-Code, overwriting any existing content
| 317 | |
| 318 | // Add an entire G-Code, overwriting any existing content |
| 319 | void GCodeBuffer::PutAndDecode(const char *_ecv_array str, size_t len) noexcept |
| 320 | { |
| 321 | #if HAS_SBC_INTERFACE |
| 322 | machineState->lastCodeFromSbc = false; |
| 323 | isBinaryBuffer = false; |
| 324 | #endif |
| 325 | stringParser.PutAndDecode(str, len); |
| 326 | } |
| 327 | |
| 328 | // Add a null-terminated string, overwriting any existing content |
| 329 | void GCodeBuffer::PutAndDecode(const char *_ecv_array str) noexcept |
no outgoing calls
no test coverage detected