quec_boot_scatter.h 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /** @file
  2. quec_boot_scatter.h
  3. @brief
  4. This file is used to define boot scatter api 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. 06/08/2021 Neo Init version
  17. =================================================================*/
  18. #ifndef QUEC_BOOT_SCATTER_H
  19. #define QUEC_BOOT_SCATTER_H
  20. #ifdef __cplusplus
  21. extern "C" {
  22. #endif
  23. /*===========================================================================
  24. * Macro Definition
  25. ===========================================================================*/
  26. /*===========================================================================
  27. * Functions declaration
  28. ===========================================================================*/
  29. /**
  30. * @brief get vbus state
  31. *
  32. * @param
  33. * NULL
  34. *
  35. * @return
  36. * true---connect
  37. * false--not connect
  38. */
  39. bool quec_boot_vbus_state(void);
  40. #ifdef __cplusplus
  41. } /*"C" */
  42. #endif
  43. #endif /* QUEC_BOOT_SCATTER_H */