-
Notifications
You must be signed in to change notification settings - Fork 191
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
change Node IDL to NoDL, update specification and usage instructions …
…based on implementation Signed-off-by: Ted Kern <[email protected]>
- Loading branch information
Ted Kern
committed
Jul 9, 2020
1 parent
3642623
commit 83a4715
Showing
4 changed files
with
66 additions
and
93 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
```xml | ||
<interface version="1"> | ||
<node name="node_1" executable="first"> | ||
<parameter name="verbose" type="bool" /> | ||
<topic name="chatter" type="std_msgs/msg/String" role="publisher" /> | ||
</node> | ||
|
||
<node name="node_2" executable="second"> | ||
<parameter name="rate" type="int" /> | ||
<topic name="/foo/bar" type="std_msgs/msg/String" role="subscription" /> | ||
<service name="/example_service" type="std_srvs/srv/Empty" role="client" /> | ||
<service name="/example_service_2" type="std_srvs/srv/Empty" role="server" /> | ||
<action name="/example_action" type="example_interfaces/action/Fibonacci" role="both" /> | ||
</node> | ||
</interface> | ||
``` |