blob: d10c800e3cf40f1739c9abc09b0bec96a4505b86 [file] [log] [blame]
b.liu5fa9e772023-11-23 18:00:55 +08001#include "qser/qser_gnss.h"
2
3int qser_Gnss_Init (uint32_t *h_gnss)
4{
5 UNUSED(h_gnss);
6
7
8 return 0;
9}
10
11int qser_Gnss_Deinit (uint32_t h_gnss)
12{
13 UNUSED(h_gnss);
14
15
16 return 0;
17}
18
19int 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;
26}
27
28int 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
37int qser_Gnss_Start (uint32_t h_gnss)
38{
39 UNUSED(h_gnss);
40
41 return 0;
42}
43
44int qser_Gnss_Stop (uint32_t h_gnss)
45{
46 UNUSED(h_gnss);
47
48 return 0;
49}
50
51int 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
59int 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
67int qser_Gnss_download_tle()
68{
69
70 return 0;
71}
72
73int qser_Gnss_injectEphemeris(uint32_t h_gnss)
74{
75 UNUSED(h_gnss);
76
77 return 0;
78}
79