Skip to content

Commit

Permalink
fix topo and json
Browse files Browse the repository at this point in the history
  • Loading branch information
sathak93 committed Oct 18, 2023
1 parent 44e78fd commit d45eb8e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ROSBRIDGE_PROTOCOL.md
Original file line number Diff line number Diff line change
Expand Up @@ -476,6 +476,7 @@ A response to a ROS service call
"action_type": <string>,
(optional) "feedback": <bool>,
(optional) "goal_msg": <list<json>>
}
```

This command creates an action client with the specified action name and type if not already created; sends the goal msg to the action server and returns the feedback and result of the goal.
Expand All @@ -493,6 +494,7 @@ This command creates an action client with the specified action name and type if
{ "op": "cancel_goal",
(optional) "id": <string>,
"action_name": <string>
}
```

This command cancels all the executing and pending goals of the specified action and return the result of cancel call.
Expand All @@ -503,9 +505,10 @@ This command cancels all the executing and pending goals of the specified action
#### 3.3.12 Destroy Client

```json
{ "op": "destroy_goal",
{ "op": "destroy_client",
(optional) "id": <string>,
"action_name": <string>
}
```
This command destroys the action client if the action client was created on earlier send_goal calls.

Expand Down

0 comments on commit d45eb8e

Please sign in to comment.