ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
It seems there's still no direct support for loading components from XML files, for the time being I'm using the <executable>
tag as below:
<?xml version="1.0" encoding="utf-8"?>
<launch>
<node name="container" pkg="rclcpp_components" exec="component_container"/>
<executable cmd="ros2 component load /container composition composition::Talker"/>
<executable cmd="ros2 component load /container composition composition::Listener"/>
</launch>