Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: non steady clock and watchdog #156

Merged
merged 2 commits into from
Jun 6, 2024
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
6 changes: 5 additions & 1 deletion nebula_ros/include/nebula_ros/common/watchdog_timer.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,11 @@ class WatchdogTimer
{
uint64_t now_ns = node_.get_clock()->now().nanoseconds();

bool is_late = (now_ns - last_update_ns_) > expected_update_interval_ns_;
// As the clock is not steady, the update timestamp can be newer than clock.now().
// Define that edge-case as not being late too.
bool is_late = (last_update_ns_ > now_ns)
? false
: (now_ns - last_update_ns_) > expected_update_interval_ns_;

callback_(!is_late);
}
Expand Down
Loading