Skip to content

Commit

Permalink
Relax the timing limit slightly
Browse files Browse the repository at this point in the history
  • Loading branch information
jpieper committed Jul 26, 2023
1 parent c72fc7f commit 662e2fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/dynamometer_drive.cc
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ class ServoStatsReader {
// Here we verify that the final and total timer are always valid.
if (result.final_timer == 0 ||
result.total_timer == 0 ||
result.final_timer > 3750 ||
result.final_timer > 3760 ||
result.total_timer < 5000) {
throw mjlib::base::system_error::einval(
fmt::format("Invalid timer final={} total={}",
Expand Down

0 comments on commit 662e2fb

Please sign in to comment.