You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Spot API commands are designed in such a way that they return immediately with a command ID. The user is then expected to poll for the command ID that is returned to view the status of the command, and block until the command completes before sending the next command. Sending another command before the current one completes will override the current command with the new one.
The spot wrapper was designed using fire-and-forget ros services. One consequence of this is that users of this wrapper will be unable to tell whether their commands are complete. Suggest using action lib, or wrapping the spot API so that the service appears to block.
spot-ros-wrapper/spot_ros_interface/scripts/spot_ros_interface.py
Line 137 in 7a22c67
Spot API commands are designed in such a way that they return immediately with a command ID. The user is then expected to poll for the command ID that is returned to view the status of the command, and block until the command completes before sending the next command. Sending another command before the current one completes will override the current command with the new one.
The spot wrapper was designed using fire-and-forget ros services. One consequence of this is that users of this wrapper will be unable to tell whether their commands are complete. Suggest using action lib, or wrapping the spot API so that the service appears to block.