timestamp Structure
This structure defines Timestamp from gPTP
typedef struct __declspec (align(1))
{
uint16_t seconds_msb;
uint32_t seconds_lsb;
uint32_t nanoseconds;
}timestamp;
Remarks
Item
Description
seconds_msb
Most significant portion of Integer value of the time stamp in seconds.
seconds_lsb
Least significant portion of Integer value of the time stamp in seconds.
nanoseconds
Fractional seconds in nanoseconds
Last updated