Skip to content

Commit

Permalink
Add goal time violated fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Lennart Nachtigall committed Jul 2, 2024
1 parent b8cd152 commit aef0ce0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ controller_interface::return_type JointTrajectoryController::update(
// time_difference is
// - negative until first point is reached
// - counting from zero to time_from_start of next point
double time_difference = time.seconds() - segment_time_from_start.seconds();
const double time_difference = time_data.uptime.seconds() - segment_time_from_start.seconds();
bool tolerance_violated_while_moving = false;
bool outside_goal_tolerance = false;
bool within_goal_time = true;
Expand Down

0 comments on commit aef0ce0

Please sign in to comment.