b.liu | 5fa9e77 | 2023-11-23 18:00:55 +0800 | [diff] [blame^] | 1 | #include "qser/qser_time.h" |
| 2 | |
| 3 | int ntp_sync_time(int enable) |
| 4 | { |
| 5 | UNUSED(enable); |
| 6 | |
| 7 | return 0; |
| 8 | } |
| 9 | |
| 10 | int modem_time_enable(int enable) |
| 11 | { |
| 12 | UNUSED(enable); |
| 13 | |
| 14 | return 0; |
| 15 | } |
| 16 | |
| 17 | int gnss_time_enable(int enable) |
| 18 | { |
| 19 | UNUSED(enable); |
| 20 | |
| 21 | return 0; |
| 22 | } |
| 23 | |
| 24 | int user_set_time(char* date, char* time) |
| 25 | { |
| 26 | UNUSED(date); |
| 27 | UNUSED(time); |
| 28 | |
| 29 | return 0; |
| 30 | } |
| 31 | |
| 32 | int lynq_sync_time_from_rtc(void) |
| 33 | { |
| 34 | |
| 35 | return 0; |
| 36 | } |
| 37 | |
| 38 | int lynq_get_time_src_status (time_src_status_s * time_src) |
| 39 | { |
| 40 | UNUSED(time_src); |
| 41 | |
| 42 | return 0; |
| 43 | } |
| 44 | |
| 45 | int lynq_set_rtc_time(void) |
| 46 | { |
| 47 | |
| 48 | return 0; |
| 49 | } |
| 50 | |
| 51 | int lynq_get_rtc_time(unsigned long *ulsec) |
| 52 | { |
| 53 | UNUSED(ulsec); |
| 54 | |
| 55 | return 0; |
| 56 | } |
| 57 | |