Skip to content

Commit

Permalink
initialize
Browse files Browse the repository at this point in the history
  • Loading branch information
christophfroehlich committed Dec 13, 2024
1 parent e18bc66 commit 0539f87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/control_toolbox/pid_ros.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -123,13 +123,13 @@ class CONTROL_TOOLBOX_PUBLIC PidROS
* \brief Initialize the PID controller based on already set parameters
* \return True if all parameters are set (p, i, d, i_min and i_max), False otherwise
*/
bool init_pid();
bool initialize();

/*!
* \brief Initialize the PID controller based on already set parameters
* \return True if all parameters are set (p, i, d, i_min and i_max), False otherwise
*/
[[deprecated("Use init_pid() instead")]] bool initPid() {
[[deprecated("Use initialize() instead")]] bool initPid() {
return initialize();
}

Expand Down

0 comments on commit 0539f87

Please sign in to comment.