Page 2 of 2

Re: Fail to publish to ROS from plugin

Posted: 05 Aug 2016, 08:53
by fferri
All plugins run in the same thread, so having multiple plugins using ROS it is like calling ros::init multiple times in a node.
The first (or the last??) call to ros::init sets the node name.

Re: Fail to publish to ROS from plugin

Posted: 05 Aug 2016, 09:03
by Billie1123
Ok, now I get it.
Thank you again.