This commit is contained in:
Björn Ellensohn 2023-08-03 17:10:21 +02:00
parent e8a7113193
commit 563f24fad8
2 changed files with 4 additions and 4 deletions

View File

@ -2,14 +2,14 @@ twist_mux:
ros__parameters:
topics:
navigation:
topic : /rmp/cmd_vel
topic : cmd_vel
timeout : 0.5
priority: 10
tracker:
topic : /rmp/cmd_vel_tracker
topic : cmd_vel_tracker
timeout : 0.5
priority: 20
joystick:
topic : "/rmp/cmd_vel_joy"
topic : cmd_vel_joy
timeout : 0.5
priority: 100

View File

@ -35,7 +35,7 @@ def generate_launch_description():
package="twist_mux",
executable="twist_mux",
parameters=[twist_mux_params, {'use_sim_time': False}],
remappings=[('/cmd_vel_joy','cmd_vel_joy')],
remappings=[('cmd_vel_joy','/rmp/cmd_vel_joy')],
namespace = namespace
)