b.liu | 4e243dc | 2023-11-27 11:20:00 +0800 | [diff] [blame^] | 1 | #include "lynq_gnss.h" |
liubin | 281ac46 | 2023-07-19 14:22:54 +0800 | [diff] [blame] | 2 | |
b.liu | 4e243dc | 2023-11-27 11:20:00 +0800 | [diff] [blame^] | 3 | int qser_Gnss_Init (uint32_t *h_gnss) |
liubin | 281ac46 | 2023-07-19 14:22:54 +0800 | [diff] [blame] | 4 | { |
b.liu | 4e243dc | 2023-11-27 11:20:00 +0800 | [diff] [blame^] | 5 | UNUSED(h_gnss); |
liubin | 281ac46 | 2023-07-19 14:22:54 +0800 | [diff] [blame] | 6 | |
liubin | 281ac46 | 2023-07-19 14:22:54 +0800 | [diff] [blame] | 7 | |
liubin | 281ac46 | 2023-07-19 14:22:54 +0800 | [diff] [blame] | 8 | return 0; |
9 | } | ||||
10 | |||||
b.liu | 4e243dc | 2023-11-27 11:20:00 +0800 | [diff] [blame^] | 11 | int qser_Gnss_Deinit (uint32_t h_gnss) |
liubin | 281ac46 | 2023-07-19 14:22:54 +0800 | [diff] [blame] | 12 | { |
b.liu | 4e243dc | 2023-11-27 11:20:00 +0800 | [diff] [blame^] | 13 | UNUSED(h_gnss); |
liubin | 281ac46 | 2023-07-19 14:22:54 +0800 | [diff] [blame] | 14 | |
15 | |||||
liubin | 281ac46 | 2023-07-19 14:22:54 +0800 | [diff] [blame] | 16 | return 0; |
17 | } | ||||
b.liu | 5fa9e77 | 2023-11-23 18:00:55 +0800 | [diff] [blame] | 18 | |
b.liu | 4e243dc | 2023-11-27 11:20:00 +0800 | [diff] [blame^] | 19 | int qser_AddRxIndMsgHandler (gnss_handler_func_t handler_ptr,uint32_t h_gnss) |
20 | { | ||||
21 | UNUSED(handler_ptr); | ||||
22 | UNUSED(h_gnss); | ||||
23 | |||||
24 | |||||
25 | return 0; | ||||
b.liu | 5fa9e77 | 2023-11-23 18:00:55 +0800 | [diff] [blame] | 26 | } |
27 | |||||
b.liu | 4e243dc | 2023-11-27 11:20:00 +0800 | [diff] [blame^] | 28 | int qser_Set_Indications (uint32_t h_gnss,e_msg_id_t type) |
29 | { | ||||
30 | UNUSED(h_gnss); | ||||
31 | UNUSED(type); | ||||
32 | |||||
33 | |||||
34 | return 0; | ||||
35 | } | ||||
36 | |||||
37 | int qser_Gnss_Start (uint32_t h_gnss) | ||||
38 | { | ||||
39 | UNUSED(h_gnss); | ||||
40 | |||||
41 | return 0; | ||||
42 | } | ||||
43 | |||||
44 | int qser_Gnss_Stop (uint32_t h_gnss) | ||||
45 | { | ||||
46 | UNUSED(h_gnss); | ||||
47 | |||||
48 | return 0; | ||||
49 | } | ||||
50 | |||||
51 | int qser_Gnss_InjectTime (uint32_t h_gnss,LYNQ_INJECT_TIME_INTO_T *time_info) | ||||
52 | { | ||||
53 | UNUSED(h_gnss); | ||||
54 | UNUSED(time_info); | ||||
55 | |||||
56 | return 0; | ||||
57 | } | ||||
58 | |||||
59 | int qser_Gnss_Delete_Aiding_Data (uint32_t h_gnss,DELETE_AIDING_DATA_TYPE_T flags) | ||||
60 | { | ||||
61 | UNUSED(h_gnss); | ||||
62 | UNUSED(flags); | ||||
63 | |||||
64 | return 0; | ||||
65 | } | ||||
66 | |||||
67 | int qser_Gnss_download_tle() | ||||
b.liu | 5fa9e77 | 2023-11-23 18:00:55 +0800 | [diff] [blame] | 68 | { |
69 | |||||
70 | return 0; | ||||
71 | } | ||||
72 | |||||
b.liu | 4e243dc | 2023-11-27 11:20:00 +0800 | [diff] [blame^] | 73 | int qser_Gnss_injectEphemeris(uint32_t h_gnss) |
b.liu | 5fa9e77 | 2023-11-23 18:00:55 +0800 | [diff] [blame] | 74 | { |
b.liu | 4e243dc | 2023-11-27 11:20:00 +0800 | [diff] [blame^] | 75 | UNUSED(h_gnss); |
b.liu | 5fa9e77 | 2023-11-23 18:00:55 +0800 | [diff] [blame] | 76 | |
b.liu | 5fa9e77 | 2023-11-23 18:00:55 +0800 | [diff] [blame] | 77 | return 0; |
78 | } | ||||
79 |