Skip to content

Commit

Permalink
astyle fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dagar committed Jul 10, 2024
1 parent 13a452a commit a7d3e6d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions platforms/common/uORB/SubscriptionInterval.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -130,11 +130,10 @@ class SubscriptionInterval
if (now > _interval_us) {
// shift last update time forward, but don't let it get further behind than the interval
_last_update = math::constrain(_last_update + _interval_us, now - _interval_us, now);

} else {
_last_update = now;
}



return true;
}
Expand Down

0 comments on commit a7d3e6d

Please sign in to comment.