ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
Please provide us with more information - in this case: a snippet that shows how you run your main loop.
Are you running your own while { ..; ros::spinOnce(); ..; }
or are you using ros::spin()
? If the former: be sure to add a ros::Rate::sleep()
in there, or you basically have a busy-wait.