Skip to content

Commit

Permalink
add remapping to launch
Browse files Browse the repository at this point in the history
  • Loading branch information
JosefGst committed Jun 27, 2024
1 parent ec5b07f commit c8fd794
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,15 @@
<!-- args-->
<arg name="rate" default="10"/>
<arg name="pub_string" default="Hello World" />
<arg name="chatter_topic" default="/chatter"/>


<!-- lingao base_driver -->
<node pkg="{{cookiecutter.pkg_name}}" name="{{cookiecutter.pkg_name}}_node" type="{{cookiecutter.pkg_name}}_node" output="screen">
<node pkg="{{cookiecutter.pkg_name}}" name="{{cookiecutter.pkg_name}}_node" type="{{cookiecutter.pkg_name}}_node" output="screen" respawn="true" respawn_delay="30" clear_params="true">
<param name="rate" value="$(arg rate)"/>
<param name="pub_string" value="$(arg pub_string)"/>


<remap from="/chatter" to="$(arg chatter_topic)"/>
</node>

<node pkg="rqt_reconfigure" type="rqt_reconfigure" name="rqt_reconfigure" output="screen"/>
Expand Down

0 comments on commit c8fd794

Please sign in to comment.