Skip to content

Commit

Permalink
decreased the rate of gain update info
Browse files Browse the repository at this point in the history
  • Loading branch information
klaxalk committed Oct 16, 2023
1 parent c8e0fc6 commit d1aa875
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/mpc_controller.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2037,7 +2037,7 @@ void MpcController::timerGains(const ros::TimerEvent &event) {

drs_->updateConfig(drs_params);

ROS_INFO_THROTTLE(0.5, "[%s]: gains have been updated", name_.c_str());
ROS_INFO_THROTTLE(10.0, "[%s]: gains have been updated", name_.c_str());
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/se3_controller.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1752,7 +1752,7 @@ void Se3Controller::timerGains(const ros::TimerEvent& event) {

drs_->updateConfig(drs_params);

ROS_INFO_THROTTLE(0.5, "[Se3Controller]: gains have been updated");
ROS_INFO_THROTTLE(10.0, "[Se3Controller]: gains have been updated");
}
}

Expand Down

0 comments on commit d1aa875

Please sign in to comment.