Skip to content

Commit

Permalink
Remove skipping of large dts because why to add that?
Browse files Browse the repository at this point in the history
  • Loading branch information
destogl committed Aug 14, 2024
1 parent 95dbc20 commit 88b66e4
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions admittance_controller/src/admittance_controller.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -392,12 +392,6 @@ controller_interface::return_type AdmittanceController::update_and_write_command
return controller_interface::return_type::ERROR;
}

if (period.seconds() > 5.0) {
RCLCPP_WARN(
get_node()->get_logger(), "Large dt, skipping!");
return controller_interface::return_type::OK;
}

// update input reference from chainable interfaces
read_state_reference_interfaces(reference_);

Expand Down

0 comments on commit 88b66e4

Please sign in to comment.