Add an asynchronous motor move
| 215 | |
| 216 | // Add an asynchronous motor move |
| 217 | bool 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 |
no test coverage detected