Skip to content

Commit

Permalink
Merge pull request #204 from jacknlliu/fix-upstream
Browse files Browse the repository at this point in the history
fix mistake about setting joint relative acceleration
  • Loading branch information
SalvoVirga authored Aug 5, 2019
2 parents 4bdc914 + c4bed4a commit bb7ab42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iiwa_ros/src/service/path_parameters.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ bool PathParametersService::setSmartServoJointSpeedLimits(const double joint_rel
const double joint_relative_acceleration,
const double override_joint_acceleration) {
config_.request.joint_relative_velocity = joint_relative_velocity;
config_.request.joint_relative_velocity = joint_relative_acceleration;
config_.request.joint_relative_acceleration = joint_relative_acceleration;
config_.request.override_joint_acceleration = override_joint_acceleration;
return callService();
}
Expand Down

0 comments on commit bb7ab42

Please sign in to comment.