-
Notifications
You must be signed in to change notification settings - Fork 13
Open
Description
It looks like the milliseconds timestamp returned by the request_time method does not return millisecond precision because the packet.transmited_timestamp_sec_frac is not used.
See:
Line 122 in 787247e
| double milliseconds = (double)txTm * 1000l; |
Proposed fix:
double milliseconds = (double)txTm * 1000l + (((double)packet.transmited_timestamp_sec_frac/(double)UINT32_MAX) * 1000.0);
plusangel
Metadata
Metadata
Assignees
Labels
No labels