Called when we reach the end of the file we are reading from. Return true if there is a line waiting to be processed.
| 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 |
| 349 | { |
| 350 | return NOT_BINARY_AND(stringParser.FileEnded()); |
| 351 | } |
| 352 | |
| 353 | char GCodeBuffer::GetCommandLetter() const noexcept |
| 354 | { |