| rita | 2f860ea | 2022-04-28 16:30:25 +0800 | [diff] [blame] | 1 | #include <stdio.h>
|
| 2 | #include <string.h>
|
| 3 | #include <stdlib.h>
|
| 4 | #include <time.h>
|
| 5 | #include <include/lynq_uci.h>
|
| 6 |
|
| 7 | #ifndef _LYNQ_SYSTIME_H_
|
| 8 | #define _LYNQ_SYSTIME_H_
|
| 9 |
|
| 10 | #ifdef __cplusplus
|
| 11 | extern "C" {
|
| 12 | #endif
|
| 13 | int modem_time_enable(int enable);
|
| 14 |
|
| 15 | int gnss_time_enable(int enable);
|
| 16 |
|
| 17 | int ntp_sync_time(int enable);
|
| 18 |
|
| rita | 62d0127 | 2022-04-29 20:12:52 +0800 | [diff] [blame^] | 19 | int user_set_time(char *date_input, char *time_input);
|
| 20 |
|
| rita | 2f860ea | 2022-04-28 16:30:25 +0800 | [diff] [blame] | 21 | #ifdef __cplusplus
|
| 22 | }
|
| 23 | #endif
|
| 24 | #endif |