Skip to content

Commit

Permalink
resolve friction conpensation edge case
Browse files Browse the repository at this point in the history
  • Loading branch information
krmihaly committed Aug 6, 2024
1 parent 41dc3ce commit ed4c32e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions kuka_sunrise_fri_driver/src/hardware_interface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -472,6 +472,10 @@ void KukaFRIHardwareInterface::activateFrictionCompensation(double * values) con
{
values[i] -= (values[i] / fabs(values[i]) * 0.1);
}
else
{
values[i] -= 0.1;
}
}
}

Expand Down

0 comments on commit ed4c32e

Please sign in to comment.