Skip to content
Snippets Groups Projects

Added new arguments to set the name of the move_base stack.

Merged Sergi Hernandez requested to merge development into master
2 files
+ 8
1
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -3,6 +3,7 @@
<launch>
<arg name="ns" default="robot"/>
<arg name="move_base_name" default="move_base"/>
<arg name="path" default="$(find iri_rosnav)/params"/>
<arg name="move_base_params" default="move_base_params.yaml"/>
<arg name="costmap_common_params" default="common_params.yaml"/>
@@ -23,12 +24,14 @@
<node pkg ="move_base"
type="move_base"
name="move_base"
name="$(arg move_base_name)"
output="$(arg output)"
launch-prefix="$(arg launch_prefix)">
<remap from="/map" to="$(arg map_topic)" />
<remap from="cmd_vel" to="$(arg cmd_vel_topic)" />
<remap from="odom" to="$(arg odom_topic)" />
<remap from="move_base_simple/goal" to="$(arg move_base_name)_simple/goal" />
<remap from="move_base" to="$(arg move_base_name)" />
<rosparam file="$(arg path)/$(arg move_base_params)" command="load" />
<rosparam file="$(arg path)/local_planner/$(arg local_planner)_params.yaml" command="load" />
Loading