ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Revision history [back]

click to hide/show revision 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.

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.

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.