MCPcopy Create free account
hub / github.com/Duet3D/RepRapFirmware / ExecuteAll

Method ExecuteAll

src/GCodes/GCodeMachineState.h:281–281  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

279 MovementSystemNumber GetCommandedQueue() const noexcept { return commandedQueueNumber; }
280 bool Executing() const noexcept { return executeAllCommands || commandedQueueNumber == ownQueueNumber; }
281 void ExecuteAll() noexcept { executeAllCommands = true; }
282 void ExecuteOnly(MovementSystemNumber qn) noexcept { ownQueueNumber = qn; executeAllCommands = false; }
283 MovementSystemNumber GetOwnQueue() const noexcept { return ownQueueNumber; }
284 bool ExecutingAll() const noexcept { return executeAllCommands; }

Callers 3

GCodes.cppFile · 0.80
RunStateMachineMethod · 0.80
GCodeBuffer.hFile · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected