Clk_SetTS_NTP()
Set Clock timestamp from an NTP timestamp.
Files
clk.h/clk.c
Prototype
Code Block | ||
---|---|---|
| ||
CPU_BOOLEAN Clk_SetTS_NTP (CLK_TS_SEC ts_ntp_sec); |
Arguments
ts_ntp_sec
Current NTP timestamp to set (in seconds, UTC+00).
Returned Values
DEF_OK
, if timestamp is successfully set.
DEF_FAIL
, otherwise.
Required Configuration
Available only if CLK_CFG_NTP_EN
is DEF_ENABLED
in clk_cfg.h
(see Module Configuration).
Notes / Warnings
Only years supported by Clock and NTP can be set, thus the timestamp date must be between greater than or equal to CLK_EPOCH_YR_START
and less than CLK_NTP_EPOCH_YR_END
.
Example Usage
Anchor | ||||
---|---|---|---|---|
|
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
CLK_TS_SEC ts_ntp_sec;
CPU_BOOLEAN valid;
ts_ntp_sec = 3158880000;
valid = Clk_SetTS_NTP(ts_ntp_sec);
if (valid == DEF_OK) {
printf("Timestamp successfully set");
} else {
printf("Set timestamp error\n\r");
} |