usb_demo.h 970 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /** @file
  2. usb_demo.h
  3. @brief
  4. This file is used to define audio 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. #ifndef USB_DEMO_H
  11. #define USB_DEMO_H
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15. #include "ql_usb.h"
  16. /*========================================================================
  17. * Variable Definition
  18. *========================================================================*/
  19. #define QL_USB_TASK_STACK 8*1024
  20. /*========================================================================
  21. * function Definition
  22. *========================================================================*/
  23. void ql_usb_app_init(void);
  24. #ifdef __cplusplus
  25. } /*"C" */
  26. #endif
  27. #endif /* USB_DEMO_H */