修改API框架,兼容1806
Change-Id: Ic68e966a32e4c7ffd7137b3d7ba94e4d813c71b2
diff --git a/mbtk/qser_lib/src/qser_gnss.c b/mbtk/qser_lib/src/qser_gnss.c
new file mode 100755
index 0000000..d10c800
--- /dev/null
+++ b/mbtk/qser_lib/src/qser_gnss.c
@@ -0,0 +1,79 @@
+#include "qser/qser_gnss.h"
+
+int qser_Gnss_Init (uint32_t *h_gnss)
+{
+ UNUSED(h_gnss);
+
+
+ return 0;
+}
+
+int qser_Gnss_Deinit (uint32_t h_gnss)
+{
+ UNUSED(h_gnss);
+
+
+ return 0;
+}
+
+int qser_AddRxIndMsgHandler (gnss_handler_func_t handler_ptr,uint32_t h_gnss)
+{
+ UNUSED(handler_ptr);
+ UNUSED(h_gnss);
+
+
+ return 0;
+}
+
+int qser_Set_Indications (uint32_t h_gnss,e_msg_id_t type)
+{
+ UNUSED(h_gnss);
+ UNUSED(type);
+
+
+ return 0;
+}
+
+int qser_Gnss_Start (uint32_t h_gnss)
+{
+ UNUSED(h_gnss);
+
+ return 0;
+}
+
+int qser_Gnss_Stop (uint32_t h_gnss)
+{
+ UNUSED(h_gnss);
+
+ return 0;
+}
+
+int qser_Gnss_InjectTime (uint32_t h_gnss,LYNQ_INJECT_TIME_INTO_T *time_info)
+{
+ UNUSED(h_gnss);
+ UNUSED(time_info);
+
+ return 0;
+}
+
+int qser_Gnss_Delete_Aiding_Data (uint32_t h_gnss,DELETE_AIDING_DATA_TYPE_T flags)
+{
+ UNUSED(h_gnss);
+ UNUSED(flags);
+
+ return 0;
+}
+
+int qser_Gnss_download_tle()
+{
+
+ return 0;
+}
+
+int qser_Gnss_injectEphemeris(uint32_t h_gnss)
+{
+ UNUSED(h_gnss);
+
+ return 0;
+}
+