iiwa_stack icon indicating copy to clipboard operation
iiwa_stack copied to clipboard

Suspect setMaxCartesianVelocity ought to actually call the service

Open MShields1986 opened this issue 11 months ago • 0 comments

Hello, Many thanks for your work on the package. I've been trying to leverage some of the features and suspect that the code here...

bool PathParametersLinService::setMaxCartesianVelocity(const geometry_msgs::Twist max_cartesian_velocity) {
  config_.request.max_cartesian_velocity = max_cartesian_velocity;
}

...ought to be...

bool PathParametersLinService::setMaxCartesianVelocity(const geometry_msgs::Twist max_cartesian_velocity) {
  config_.request.max_cartesian_velocity = max_cartesian_velocity;
  return callService();
}

...but maybe I'm missing something?

MShields1986 avatar Mar 21 '24 15:03 MShields1986