blob: d86124c72b26d85d12b2ae2fae1c903ac04f00f4 [file] [log] [blame]
b.liu4e243dc2023-11-27 11:20:00 +08001#include "lynq_gnss.h"
liubin281ac462023-07-19 14:22:54 +08002
b.liu4e243dc2023-11-27 11:20:00 +08003int qser_Gnss_Init (uint32_t *h_gnss)
liubin281ac462023-07-19 14:22:54 +08004{
b.liu4e243dc2023-11-27 11:20:00 +08005 UNUSED(h_gnss);
liubin281ac462023-07-19 14:22:54 +08006
liubin281ac462023-07-19 14:22:54 +08007
liubin281ac462023-07-19 14:22:54 +08008 return 0;
9}
10
b.liu4e243dc2023-11-27 11:20:00 +080011int qser_Gnss_Deinit (uint32_t h_gnss)
liubin281ac462023-07-19 14:22:54 +080012{
b.liu4e243dc2023-11-27 11:20:00 +080013 UNUSED(h_gnss);
liubin281ac462023-07-19 14:22:54 +080014
15
liubin281ac462023-07-19 14:22:54 +080016 return 0;
17}
b.liu5fa9e772023-11-23 18:00:55 +080018
b.liu4e243dc2023-11-27 11:20:00 +080019int 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.liu5fa9e772023-11-23 18:00:55 +080026}
27
b.liu4e243dc2023-11-27 11:20:00 +080028int 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()
b.liu5fa9e772023-11-23 18:00:55 +080068{
69
70 return 0;
71}
72
b.liu4e243dc2023-11-27 11:20:00 +080073int qser_Gnss_injectEphemeris(uint32_t h_gnss)
b.liu5fa9e772023-11-23 18:00:55 +080074{
b.liu4e243dc2023-11-27 11:20:00 +080075 UNUSED(h_gnss);
b.liu5fa9e772023-11-23 18:00:55 +080076
b.liu5fa9e772023-11-23 18:00:55 +080077 return 0;
78}
79