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

Method AddAsyncMove

src/Movement/DDARing.cpp:217–226  ·  view source on GitHub ↗

Add an asynchronous motor move

Source from the content-addressed store, hash-verified

215
216// Add an asynchronous motor move
217bool DDARing::AddAsyncMove(const AsyncMove& nextMove) noexcept
218{
219 if (addPointer->InitAsyncMove(*this, nextMove))
220 {
221 addPointer = addPointer->GetNext();
222 scheduledMoves++;
223 return true;
224 }
225 return false;
226}
227
228#endif
229

Callers 1

MoveLoopMethod · 0.80

Calls 2

InitAsyncMoveMethod · 0.80
GetNextMethod · 0.45

Tested by

no test coverage detected