We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Problem description
In the package cartesian_controllers_simulation the loop of the thread that runs mujoco is not running in realtime but much faster
cartesian_controllers_simulation
// Simulate in realtime while (true) { mj_step(m, d); // Provide fresh data for ROS2-control state_mutex.lock(); syncStates(); state_mutex.unlock(); }
It needs a sleep command somewhere to really run in real time. The best choice would be to sync it with the ROS Clock.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Problem description
In the package
cartesian_controllers_simulation
the loop of the thread that runs mujoco is not running in realtime but much fasterIt needs a sleep command somewhere to really run in real time. The best choice would be to sync it with the ROS Clock.
The text was updated successfully, but these errors were encountered: