MotionController Axis MultiAxis IO IOPoint NetworkNode RsiError
Sample Apps Changelog

RapidCode API

◆ MotionDoneWait() [2/2]

int32 MotionDoneWait ( int32  timeoutMilliseconds)
pure virtual

Waits for a move to complete.

Description:
MotionDoneWait Will poll the Axis to see when the motion is complete and settled.

It will timeout after the number of milliseconds specified.

axis->MotionDoneWait() polls axis->MotionDoneGet() every 10ms

Returns
elapsed milliseconds
Parameters
timeoutMillisecondsHow int32 to wait before timing out?
Sample Code:
axis->MoveTrapezoidal(1000.0, 1000.0, 10000.0, 10000.0);
printf("Motion is complete and Axis has settled\n");
Note
This method polls the state of the axis, and sleeps the task for 10 milliseconds each time the state is checked. You might want to create your own version of this method if you are running in a single threaded environment, so you could do other things while waiting for a motion to complete.

This will throw RSI_MOTION_DONE_WAIT_TIMEOUT if it times out.

See also
InterruptWait, MotionDoneGet