stm32_ota/ABM开发板(DTU透传APP源码)/YcOS版本/APPV4.0/USER/USER_GNSS/user_gnss.c
2024-12-17 20:03:43 +08:00

36 lines
979 B
C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#include "user_gnss.h"
#include <stdlib.h>
/********************************************************************************
* @file user_gnss.c
* @author 晏诚科技 Mr.Wang
* @version V1.0.0
* @date 09-Jan-2021
* @brief ec20 GNSS应用
******************************************************************************
*******************************************************************************/
/*****************************************
*内部常量
****************************************/
/*********************************************************************************************************************
* 名 称RunResult GNSSInit(void)
* 功 能初始GNSS 启用GNSS自启动 打开GNSS引擎
*********************************************************************************************************************/
RunResult GNSSInit(void)
{
EC20GnssConfig() ;
RunResult result = EC20SelfOpenGnss() ;
EC20OpenGnss() ;
return result ;
}