Skip to content

Commit

Permalink
Merge pull request #130 from 1moule/fix_calibration
Browse files Browse the repository at this point in the history
Modify node handle to get pos_threshold.
  • Loading branch information
d0h0s authored Jul 28, 2024
2 parents 683d191 + f5448a7 commit e688d53
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ bool MechanicalCalibrationController::init(hardware_interface::RobotHW* robot_hw
ROS_ERROR("Position value was not specified (namespace: %s)", nh_return.getNamespace().c_str());
return false;
}
if (!controller_nh.getParam("pos_threshold", position_threshold_))
if (!nh_return.getParam("pos_threshold", position_threshold_))
{
ROS_ERROR("Position value was not specified (namespace: %s)", nh_return.getNamespace().c_str());
return false;
Expand Down

0 comments on commit e688d53

Please sign in to comment.