Skip to content

Commit

Permalink
fix "could not read robot_description parameter"
Browse files Browse the repository at this point in the history
  • Loading branch information
tpoignonec committed Sep 2, 2024
1 parent 296a0b0 commit f5f1bad
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion fd_bringup/launch/fd.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
PathJoinSubstitution,
)
from launch_ros.actions import Node
from launch_ros.parameter_descriptions import ParameterValue
from launch_ros.substitutions import FindPackageShare


Expand All @@ -46,7 +47,7 @@ def generate_launch_description():
' use_clutch:=', use_clutch,
]
)
robot_description = {'robot_description': robot_description_content}
robot_description = {'robot_description': ParameterValue(robot_description_content, value_type=str)}

phi_controllers = PathJoinSubstitution(
[
Expand Down

0 comments on commit f5f1bad

Please sign in to comment.