RTI Connext DDS Micro C API
Version 3.0.3
|
NtpTime API. More...
#include <osapi_time.h>
NtpTime API.
NTP Time representation.
Expresses time in NTP format. The second field is simply an integer expressing seconds. The fraction field expresses 1/2^32 of a second. We strongly urge customers to use our provided macros to convert this format to and from human readable form.
Example:
The following is a simple example on how to prepare a struct OSAPI_NtpTime structure to be 1.5 seconds.
* struct OSAPI_NtpTime ntpTime; * * OSAPI_NtpTime_from_millisec(ntpTime, 1, 500); *