Get the file GCode buffer that processes commands for this movement system
| 1735 | |
| 1736 | // Get the file GCode buffer that processes commands for this movement system |
| 1737 | GCodeBuffer* GCodes::GetFileGCode(unsigned int msNumber) const noexcept |
| 1738 | { |
| 1739 | return (msNumber == 0 || FileGCode()->ExecutingAll()) ? FileGCode() : File2GCode(); |
| 1740 | } |
| 1741 | |
| 1742 | // Lock the movement system that we currently use and wait for it to stop |
| 1743 | bool GCodes::LockCurrentMovementSystemAndWaitForStandstill(GCodeBuffer& gb) noexcept |
nothing calls this directly
no test coverage detected