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
…-navigation#4093)

Signed-off-by: enricosutera <[email protected]>
  • Loading branch information
SteveMacenski authored and enricosutera committed May 19, 2024
1 parent 9e04e0d commit ff41925
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 ff41925

Please sign in to comment.