mirror of
https://github.com/bjoernellens1/cps_rmp220_support.git
synced 2024-11-23 15:45:08 +00:00
changes for namespacing correctly. Still under construction.
This commit is contained in:
parent
feeaa74fa3
commit
46220ab8f4
@ -12,8 +12,9 @@ slam_toolbox:
|
|||||||
# ROS Parameters
|
# ROS Parameters
|
||||||
odom_frame: odom
|
odom_frame: odom
|
||||||
map_frame: map
|
map_frame: map
|
||||||
|
map_topic: map #tryout?
|
||||||
base_frame: base_footprint
|
base_frame: base_footprint
|
||||||
scan_topic: /scan
|
scan_topic: scan
|
||||||
mode: localization
|
mode: localization
|
||||||
|
|
||||||
# if you'd like to immediately start continuing a map at a given pose
|
# if you'd like to immediately start continuing a map at a given pose
|
||||||
|
@ -207,7 +207,7 @@ local_costmap:
|
|||||||
mark_threshold: 0
|
mark_threshold: 0
|
||||||
observation_sources: scan
|
observation_sources: scan
|
||||||
scan:
|
scan:
|
||||||
topic: /scan
|
topic: scan
|
||||||
max_obstacle_height: 2.0
|
max_obstacle_height: 2.0
|
||||||
clearing: True
|
clearing: True
|
||||||
marking: True
|
marking: True
|
||||||
@ -238,7 +238,7 @@ global_costmap:
|
|||||||
enabled: True
|
enabled: True
|
||||||
observation_sources: scan
|
observation_sources: scan
|
||||||
scan:
|
scan:
|
||||||
topic: /scan
|
topic: scan
|
||||||
max_obstacle_height: 2.0
|
max_obstacle_height: 2.0
|
||||||
clearing: True
|
clearing: True
|
||||||
marking: True
|
marking: True
|
||||||
|
@ -10,7 +10,7 @@ def generate_launch_description():
|
|||||||
package='segwayrmp',
|
package='segwayrmp',
|
||||||
executable='SmartCar',
|
executable='SmartCar',
|
||||||
name='SmartCar',
|
name='SmartCar',
|
||||||
remappings=[('/cmd_vel','/cmd_vel_out')],
|
remappings=[('cmd_vel','cmd_vel_out'), ('/odom','odom'), ('/imu','imu'), ('/bms_fb','bms_fb'), ('/joint_states','joint_states')],
|
||||||
namespace = "/rmp"
|
namespace = "/rmp"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -26,7 +26,7 @@ def generate_launch_description():
|
|||||||
executable='rmp220_teleop',
|
executable='rmp220_teleop',
|
||||||
name='rmp220_teleop',
|
name='rmp220_teleop',
|
||||||
parameters=[joy_params, {'use_sim_time': use_sim_time}],
|
parameters=[joy_params, {'use_sim_time': use_sim_time}],
|
||||||
remappings=[('/cmd_vel','/cmd_vel_joy')],
|
remappings=[('cmd_vel','cmd_vel_joy')],
|
||||||
namespace = "/rmp"
|
namespace = "/rmp"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user