/****************************************************************************** ** File Name: gps_cfg.h * ** Author: Liangwen.Zhen * ** DATE: 07/26/2007 * ** Copyright: 2007 Spreadtrum, Incoporated. All Rights Reserved. * ** Description: This file defines the basic operation interfaces of GPS * ** * ****************************************************************************** ****************************************************************************** ** Edit History * ** ------------------------------------------------------------------------- * ** DATE NAME DESCRIPTION * ** 07/26/2007 Liangwen.Zhen/David.Jia Create. * ******************************************************************************/ #ifndef _GPS_CFG_H_ #define _GPS_CFG_H_ /**---------------------------------------------------------------------------* ** Dependencies * **---------------------------------------------------------------------------*/ /**---------------------------------------------------------------------------* ** Debugging Flag * **---------------------------------------------------------------------------*/ #include "gps_drv.h" /**---------------------------------------------------------------------------* ** Compiler Flag * **---------------------------------------------------------------------------*/ #ifdef __cplusplus extern "C" { #endif /**---------------------------------------------------------------------------* ** Macro Definition * **---------------------------------------------------------------------------*/ /**---------------------------------------------------------------------------* ** Local Function Prototypes * **---------------------------------------------------------------------------*/ /*****************************************************************************/ // Description: This function is used to get GPS information table pointer // Author: Liangwen.Zhen // Note: /*****************************************************************************/ PUBLIC GPS_OPERATIONS_T **GPS_GetOperationTab(void); /*****************************************************************************/ // Description: This function is used to get GPS information table lenght // Author: Liangwen.Zhen // Note: /*****************************************************************************/ PUBLIC uint32 GPS_GetOperationTabLen(void); /**---------------------------------------------------------------------------* ** Compiler Flag * **---------------------------------------------------------------------------*/ #ifdef __cplusplus } #endif // End of gps_cfg.h #endif // _GPS_CFG_H_