ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
Did you add an export
section to your pkg manifest? Something like (from position_controllers/package.xml):
<package>
..
<export>
<controller_interface plugin="${prefix}/artbot_control_plugins.xml"/>
</export>
</package>
Without that export, your package will not be considered a package providing a controller plugin, which is what the manager will look for.
2 | No.2 Revision |
Did you add an export
section to your pkg manifest? Something like (from position_controllers/package.xml):
<package>
..
<export>
<controller_interface plugin="${prefix}/artbot_control_plugins.xml"/>
</export>
</package>
Without that export, your package will not be considered a package providing a controller plugin, which is what the manager will look for.
See also wiki/pluginlib - Registering Plugin with ROS Package System.
3 | No.3 Revision |
Did you add an export
section to your pkg manifest? Something like (from position_controllers/package.xml):
<package>
..
<export>
<controller_interface plugin="${prefix}/artbot_control_plugins.xml"/>
</export>
</package>
Without that export, your package will not be considered a package providing a controller plugin, which is what the manager will look for.
See also wiki/pluginlib - Registering Plugin with ROS Package System.