ntrip_rtk_demo.h 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /** @file
  2. ntrip_rtk_demo.h
  3. @brief
  4. This file is used to define ntrip rtk demo for different Quectel Project.
  5. */
  6. /*================================================================
  7. Copyright (c) 2020 Quectel Wireless Solution, Co., Ltd. All Rights Reserved.
  8. Quectel Wireless Solution Proprietary and Confidential.
  9. =================================================================*/
  10. /*=================================================================
  11. EDIT HISTORY FOR MODULE
  12. This section contains comments describing changes made to the module.
  13. Notice that changes are listed in reverse chronological order.
  14. WHEN WHO WHAT, WHERE, WHY
  15. ------------ ------- -------------------------------------------------------------------------------
  16. =================================================================*/
  17. #ifndef NTRIP_RTK_DEMO_H
  18. #define NTRIP_RTK_DEMO_H
  19. #ifdef __cplusplus
  20. extern "C" {
  21. #endif
  22. /*========================================================================
  23. * Variable Definition
  24. *========================================================================*/
  25. #define NTRIP_RTK_DEMO_TASK_PRIO 12
  26. #define NTRIP_RTK_DEMO_TASK_STACK_SIZE 8*1024
  27. #define NTRIP_RTK_DEMO_TASK_EVENT_CNT 8
  28. /*========================================================================
  29. * function Definition
  30. *========================================================================*/
  31. QlOSStatus ql_ntrip_rtk_demo_init(void);
  32. #ifdef __cplusplus
  33. } /*"C" */
  34. #endif
  35. #endif /* NTRIP_RTK_DEMO_H */