You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I want to convert a ROS driver in node into nodelet.
For update function which is called every loop such as:
while(ros::OK())
{
update();
ros::spinOnce();
}
How this "update()" call is to be converted in nodelet?
I think createTimer(Duration(0, 0), update) does. But I cannot be assured because I don't exactly know how the ROS Timer works under the hood and I cannot find anything about this by googling.
The text was updated successfully, but these errors were encountered:
Hi,
I want to convert a ROS driver in node into nodelet.
For update function which is called every loop such as:
How this "update()" call is to be converted in nodelet?
I think createTimer(Duration(0, 0), update) does. But I cannot be assured because I don't exactly know how the ROS Timer works under the hood and I cannot find anything about this by googling.
The text was updated successfully, but these errors were encountered: