Skip to content

Commit

Permalink
Use Clock instead of Rate for backward compatibility of rolling (#1864)
Browse files Browse the repository at this point in the history
  • Loading branch information
saikishor authored Nov 8, 2024
1 parent 93a2a68 commit 5d36d99
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions controller_manager/src/ros2_control_node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ int main(int argc, char ** argv)
executor, manager_node_name, "", cm_node_options);

const bool use_sim_time = cm->get_parameter_or("use_sim_time", false);
rclcpp::Rate rate(cm->get_update_rate(), cm->get_clock());

const bool lock_memory = cm->get_parameter_or<bool>("lock_memory", true);
std::string message;
Expand All @@ -85,7 +84,7 @@ int main(int argc, char ** argv)
thread_priority);

std::thread cm_thread(
[cm, thread_priority, use_sim_time, &rate]()
[cm, thread_priority, use_sim_time]()
{
if (!realtime_tools::configure_sched_fifo(thread_priority))
{
Expand Down Expand Up @@ -128,7 +127,7 @@ int main(int argc, char ** argv)
next_iteration_time += period;
if (use_sim_time)
{
rate.sleep();
cm->get_clock()->sleep_until(current_time + period);
}
else
{
Expand Down

0 comments on commit 5d36d99

Please sign in to comment.