File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
joint_trajectory_controller_plugins
include/joint_trajectory_controller_plugins Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ class PidTrajectoryPlugin : public TrajectoryControllerBase
72
72
/* *
73
73
* @brief parse PID gains from parameter struct
74
74
*/
75
- void updateGains ();
75
+ void parseGains ();
76
76
77
77
// number of command joints
78
78
size_t num_cmd_joints_;
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ bool PidTrajectoryPlugin::configure()
63
63
bool PidTrajectoryPlugin::activate ()
64
64
{
65
65
params_ = param_listener_->get_params ();
66
- updateGains ();
66
+ parseGains ();
67
67
return true ;
68
68
};
69
69
@@ -72,13 +72,13 @@ bool PidTrajectoryPlugin::updateGainsRT()
72
72
if (param_listener_->is_old (params_))
73
73
{
74
74
params_ = param_listener_->get_params ();
75
- updateGains ();
75
+ parseGains ();
76
76
}
77
77
78
78
return true ;
79
79
}
80
80
81
- void PidTrajectoryPlugin::updateGains ()
81
+ void PidTrajectoryPlugin::parseGains ()
82
82
{
83
83
for (size_t i = 0 ; i < num_cmd_joints_; ++i)
84
84
{
You can’t perform that action at this time.
0 commit comments