blob: d86124c72b26d85d12b2ae2fae1c903ac04f00f4 [file] [log] [blame]
#include "lynq_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;
}