| 336 | } |
| 337 | |
| 338 | void GCodeBuffer::StartNewFile() noexcept |
| 339 | { |
| 340 | #if HAS_SBC_INTERFACE |
| 341 | machineState->SetFileExecuting(); |
| 342 | #endif |
| 343 | machineState->lineNumber = 0; // reset line numbering when M32 is run |
| 344 | IF_NOT_BINARY(stringParser.StartNewFile()); |
| 345 | } |
| 346 | |
| 347 | // Called when we reach the end of the file we are reading from. Return true if there is a line waiting to be processed. |
| 348 | bool GCodeBuffer::FileEnded() noexcept |
no test coverage detected