gps_cfg.h 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /******************************************************************************
  2. ** File Name: gps_cfg.h *
  3. ** Author: Liangwen.Zhen *
  4. ** DATE: 07/26/2007 *
  5. ** Copyright: 2007 Spreadtrum, Incoporated. All Rights Reserved. *
  6. ** Description: This file defines the basic operation interfaces of GPS *
  7. ** *
  8. ******************************************************************************
  9. ******************************************************************************
  10. ** Edit History *
  11. ** ------------------------------------------------------------------------- *
  12. ** DATE NAME DESCRIPTION *
  13. ** 07/26/2007 Liangwen.Zhen/David.Jia Create. *
  14. ******************************************************************************/
  15. #ifndef _GPS_CFG_H_
  16. #define _GPS_CFG_H_
  17. /**---------------------------------------------------------------------------*
  18. ** Dependencies *
  19. **---------------------------------------------------------------------------*/
  20. /**---------------------------------------------------------------------------*
  21. ** Debugging Flag *
  22. **---------------------------------------------------------------------------*/
  23. #include "gps_drv.h"
  24. /**---------------------------------------------------------------------------*
  25. ** Compiler Flag *
  26. **---------------------------------------------------------------------------*/
  27. #ifdef __cplusplus
  28. extern "C" {
  29. #endif
  30. /**---------------------------------------------------------------------------*
  31. ** Macro Definition *
  32. **---------------------------------------------------------------------------*/
  33. /**---------------------------------------------------------------------------*
  34. ** Local Function Prototypes *
  35. **---------------------------------------------------------------------------*/
  36. /*****************************************************************************/
  37. // Description: This function is used to get GPS information table pointer
  38. // Author: Liangwen.Zhen
  39. // Note:
  40. /*****************************************************************************/
  41. PUBLIC GPS_OPERATIONS_T **GPS_GetOperationTab(void);
  42. /*****************************************************************************/
  43. // Description: This function is used to get GPS information table lenght
  44. // Author: Liangwen.Zhen
  45. // Note:
  46. /*****************************************************************************/
  47. PUBLIC uint32 GPS_GetOperationTabLen(void);
  48. /**---------------------------------------------------------------------------*
  49. ** Compiler Flag *
  50. **---------------------------------------------------------------------------*/
  51. #ifdef __cplusplus
  52. }
  53. #endif // End of gps_cfg.h
  54. #endif // _GPS_CFG_H_