12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- /******************************************************************************
- ** 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_
|