Skip to content

Commit

Permalink
Increase the timer threshold to account for recent fw changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jpieper committed Nov 18, 2022
1 parent 9267135 commit da83d08
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 @@ -209,7 +209,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 > 3850 ||
result.final_timer > 3900 ||
result.total_timer < 5000) {
throw mjlib::base::system_error::einval(
fmt::format("Invalid timer final={} total={}",
Expand Down

0 comments on commit da83d08

Please sign in to comment.