ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
Ok I finally figured out what's going on. The problem is in the package.xml
, since the base class for my plugin lives in transmission_interface
, the export line in the package.xml needs to read
<export>
<transmission_interface plugin="${prefix}/plugins.xml" />
</export>
The pluginlib documentation does state this is the case. I just hadn't read that part.