This is called only after running config.g and when using M26/M23 to resume a print
| 261 | |
| 262 | // This is called only after running config.g and when using M26/M23 to resume a print |
| 263 | void GCodeMachineState::CopyStateFrom(const GCodeMachineState& other) noexcept |
| 264 | { |
| 265 | selectedPlane = other.selectedPlane; |
| 266 | drivesRelative = other.drivesRelative; |
| 267 | axesRelative = other.axesRelative; |
| 268 | feedRate = other.feedRate; |
| 269 | volumetricExtrusion = other.volumetricExtrusion; |
| 270 | usingInches = other.usingInches; |
| 271 | inverseTimeMode = other.inverseTimeMode; |
| 272 | } |
| 273 | |
| 274 | // Set the error message and associated state |
| 275 | void GCodeMachineState::SetError(const char *_ecv_array msg, int parameter) noexcept |
no outgoing calls
no test coverage detected