Skip to content

Commit

Permalink
remap behavior cmd_vel to cmd_vel_nav to not bypass cmd pipeline (ros…
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveMacenski authored and Marc-Morcos committed Jul 4, 2024
1 parent 8724b38 commit 59ebfce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nav2_bringup/launch/navigation_launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ def generate_launch_description():
respawn_delay=2.0,
parameters=[configured_params],
arguments=['--ros-args', '--log-level', log_level],
remappings=remappings,
remappings=remappings + [('cmd_vel', 'cmd_vel_nav')],
),
Node(
package='nav2_bt_navigator',
Expand Down Expand Up @@ -256,7 +256,7 @@ def generate_launch_description():
plugin='behavior_server::BehaviorServer',
name='behavior_server',
parameters=[configured_params],
remappings=remappings,
remappings=remappings + [('cmd_vel', 'cmd_vel_nav')],
),
ComposableNode(
package='nav2_bt_navigator',
Expand Down

0 comments on commit 59ebfce

Please sign in to comment.