ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

Dornhedge already answered the error code part of your question. So, I'll respond to why your arm keeps moving.

Actually, your example already hints the answer.

Action failed: ACTIVE
Timed out achieving goal A
Action failed: PENDING

Your action goal only failed, because it got timed out (go to A in X seconds). However, move_arm uses another action server for executing arm motions (FollowJointTrajectoryAction). Unfortunately, move_arm does not cancel the execution action, once its own goal has been aborted/preempted. In your case that is not too bad, but in some cases you really want to stop the execution.

Have a look at this Q&A to find out how to cancel the execution, if you cancel a move_arm action.