Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -347,6 +347,11 @@ controller_interface::return_type JointTrajectoryController::update(
// to be satisfied or violated within the goal_time_tolerance
}
}
else if (tolerance_violated_while_moving)
{
set_hold_position();
RCLCPP_ERROR(get_node()->get_logger(), "Holding position due to state tolerance violation");
}
}
}

Expand Down