Skip to content

Commit

Permalink
expose waypoint sequence launch argument
Browse files Browse the repository at this point in the history
  • Loading branch information
jlblancoc committed Apr 4, 2024
1 parent 0278989 commit d2a65bb
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions mrpt_reactivenav2d/launch/rnav.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ def generate_launch_description():
'topic_reactive_nav_goal',
default_value='/goal_pose'
)
topic_reactive_nav_waypoint_sequence_arg = DeclareLaunchArgument(
'topic_wp_seq',
default_value='/rnav_waypoint_sequence'
)
nav_period_arg = DeclareLaunchArgument(
'nav_period',
default_value='0.20'
Expand Down Expand Up @@ -84,6 +88,7 @@ def generate_launch_description():
'topic_robot_shape': LaunchConfiguration('topic_robot_shape'),
'topic_obstacles': LaunchConfiguration('topic_obstacles'),
'topic_reactive_nav_goal': LaunchConfiguration('topic_reactive_nav_goal'),
'topic_wp_seq': LaunchConfiguration('topic_wp_seq'),
'nav_period': LaunchConfiguration('nav_period'),
'frameid_reference': LaunchConfiguration('frameid_reference'),
'frameid_robot': LaunchConfiguration('frameid_robot'),
Expand All @@ -102,6 +107,7 @@ def generate_launch_description():
topic_robot_shape_arg,
topic_obstacles_arg,
topic_reactive_nav_goal_arg,
topic_reactive_nav_waypoint_sequence_arg,
nav_period_arg,
frameid_reference_arg,
frameid_robot_arg,
Expand Down

0 comments on commit d2a65bb

Please sign in to comment.