| #include "lynq_systime.h" |
| #include "mbtk_type.h" |
| |
| int ntp_sync_time(int enable) |
| { |
| UNUSED(enable); |
| |
| return 0; |
| } |
| |
| int modem_time_enable(int enable) |
| { |
| UNUSED(enable); |
| |
| return 0; |
| } |
| |
| int gnss_time_enable(int enable) |
| { |
| UNUSED(enable); |
| |
| return 0; |
| } |
| |
| int user_set_time(char* date, char* time) |
| { |
| UNUSED(date); |
| UNUSED(time); |
| |
| return 0; |
| } |
| |
| int lynq_sync_time_from_rtc(void) |
| { |
| |
| return 0; |
| } |
| |
| int lynq_get_time_src_status (time_src_status_s * time_src) |
| { |
| UNUSED(time_src); |
| |
| return 0; |
| } |
| |
| int lynq_set_rtc_time(void) |
| { |
| |
| return 0; |
| } |
| |
| int lynq_get_rtc_time(unsigned long *ulsec) |
| { |
| UNUSED(ulsec); |
| |
| return 0; |
| } |
| |