Skip to content

Commit ccb8bda

Browse files
author
C. Andy Martin
committed
synchronize_time: reset when clock is warped
If either the hardware clock or system clock warp, reset the EMA to prevent incorrect clock values from being used. Detect the warp by putting a limit on the absolute error between the synchronized clock and the system clock. When a warp is detected, reset the EMA to force the clocks to resynchronize. Use the system clock until the EMA has stabalized again.
1 parent d51860b commit ccb8bda

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

src/urg_c_wrapper.cpp

+13-2
Original file line numberDiff line numberDiff line change
@@ -1051,8 +1051,9 @@ ros::Duration URGCWrapper::getTimeStampOffset(size_t num_measurements)
10511051

10521052
ros::Time URGCWrapper::getSynchronizedTime(long time_stamp, long long system_time_stamp)
10531053
{
1054-
ros::Time stamp;
1055-
stamp.fromNSec((uint64_t)system_time_stamp);
1054+
ros::Time stamp, system_time;
1055+
system_time.fromNSec((uint64_t)system_time_stamp);
1056+
stamp = system_time;
10561057

10571058
const uint32_t t1 = static_cast<uint32_t>(time_stamp);
10581059
const uint32_t t0 = static_cast<uint32_t>(last_hardware_time_stamp_);
@@ -1078,6 +1079,16 @@ ros::Time URGCWrapper::getSynchronizedTime(long time_stamp, long long system_tim
10781079
if (adj_count_ > 100)
10791080
{
10801081
stamp.fromSec(hardware_clock_+hardware_clock_adj_);
1082+
// If the time error is large a clock warp has occurred.
1083+
// Reset the EMA and use the system time.
1084+
if (fabs((stamp-system_time).toSec()) > 0.1)
1085+
{
1086+
adj_count_ = 0;
1087+
hardware_clock_ = 0.0;
1088+
last_hardware_time_stamp_ = 0;
1089+
stamp = system_time;
1090+
ROS_INFO("%s: detected clock warp, reset EMA", __func__);
1091+
}
10811092
}
10821093
return stamp;
10831094
}

0 commit comments

Comments
 (0)