Skip to content

Commit

Permalink
Fix launch issues
Browse files Browse the repository at this point in the history
  • Loading branch information
andyblarblar committed May 13, 2024
1 parent 94e90f4 commit b720d61
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def generate_launch_description():
max_look_ahead_distance = LaunchConfiguration('max_look_ahead_distance', default='10.0')
k_dd = LaunchConfiguration('k_dd', default='1.5')
max_speed = LaunchConfiguration('max_speed', default=6.7056)
min_speed = LaunchConfiguration('max_speed', default=0.5)
min_speed = LaunchConfiguration('min_speed', default=0.5)
avoidance_radius = LaunchConfiguration('avoidance_radius', default=2.0)
rear_axle_frame = LaunchConfiguration('rear_axle_frame', default='rear_axle')
wheel_base = LaunchConfiguration('wheel_base', default='1.08')
Expand Down
4 changes: 2 additions & 2 deletions phoenix_robot/launch/common.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ def generate_launch_description():
]),
launch_arguments={
'use_sim_time': use_sim_time,
'max_speed': 8.0,
'min_speed': 0.5
'max_speed': '8.0',
'min_speed': '0.5'
}.items(),
)

Expand Down

0 comments on commit b720d61

Please sign in to comment.