Skip to content

Commit

Permalink
correct for kinematics_interface initialize() API change
Browse files Browse the repository at this point in the history
  • Loading branch information
Nibanovic committed Aug 1, 2024
1 parent e1b47c1 commit 95dbc20
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,9 @@ controller_interface::return_type AdmittanceRule::configure(
kinematics_ = std::unique_ptr<kinematics_interface::KinematicsInterface>(
kinematics_loader_->createUnmanagedInstance(parameters_.kinematics.plugin_name));
if (!kinematics_->initialize(
node->get_node_parameters_interface(), parameters_.kinematics.tip, robot_description))
robot_description,
node->get_node_parameters_interface(),
"kinematics"))
{
return controller_interface::return_type::ERROR;
}
Expand Down

0 comments on commit 95dbc20

Please sign in to comment.