Skip to content

Commit

Permalink
Update launch (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
ToshikiNakamura0412 authored Jun 22, 2024
1 parent 7792316 commit 136582b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion launch/local_goal_creator.launch
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
<?xml version="1.0"?>
<launch>
<arg name="output" default="log" doc="screen or log"/>
<arg name="target_dist_to_goal" default="0.5"/>
<arg name="use_direction_in_path" default="false"/>
<arg name="path_topic" default="/path"/>
<arg name="robot_pose_topic" default="/robot_pose"/>
<node pkg="local_goal_creator_ros" type="local_goal_creator_node" name="local_goal_creator" output="screen">
<node pkg="local_goal_creator_ros" type="local_goal_creator_node" name="local_goal_creator" output="$(arg output)">
<param name="target_dist_to_goal" value="$(arg target_dist_to_goal)"/>
<param name="use_direction_in_path" value="$(arg use_direction_in_path)"/>
<remap from="/path" to="$(arg path_topic)"/>
Expand Down
1 change: 1 addition & 0 deletions launch/test.launch
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<arg name="use_direction_in_path" default="true"/>

<include file="$(find local_goal_creator_ros)/launch/local_goal_creator.launch">
<arg name="output" value="screen"/>
<arg name="use_direction_in_path" value="$(arg use_direction_in_path)"/>
<arg name="robot_pose_topic" value="/initialpose"/>
</include>
Expand Down

0 comments on commit 136582b

Please sign in to comment.