-
Notifications
You must be signed in to change notification settings - Fork 241
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove robot_description parameter from ros2_control node
It now uses the description topic from the robot_state_publisher automatically.
- Loading branch information
Showing
1 changed file
with
0 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -242,7 +242,6 @@ def launch_setup(context, *args, **kwargs): | |
package="controller_manager", | ||
executable="ros2_control_node", | ||
parameters=[ | ||
robot_description, | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
MatthijsBurgh
Contributor
|
||
update_rate_config_file, | ||
ParameterFile(initial_joint_controllers, allow_substs=True), | ||
], | ||
|
Now the controller_manager is listening for the robot_description on
/controller_manager/robot_description
, while it is published on/robot_description
.