uart_demo.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /*================================================================
  2. Copyright (c) 2021, Quectel Wireless Solutions Co., Ltd. All rights reserved.
  3. Quectel Wireless Solutions Proprietary and Confidential.
  4. =================================================================*/
  5. /*=================================================================
  6. EDIT HISTORY FOR MODULE
  7. This section contains comments describing changes made to the module.
  8. Notice that changes are listed in reverse chronological order.
  9. WHEN WHO WHAT, WHERE, WHY
  10. ------------ ------- -------------------------------------------------------------------------------
  11. =================================================================*/
  12. #ifndef UART_DEMO_H
  13. #define UART_DEMO_H
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17. /*===========================================================================
  18. * Enumeration Definition
  19. ===========================================================================*/
  20. /*===========================================================================
  21. * Struct
  22. ===========================================================================*/
  23. /*===========================================================================
  24. * Functions declaration
  25. ===========================================================================*/
  26. void ql_uart_app_init(void);
  27. void ql_uart_rb_app_init(void);
  28. #ifdef __cplusplus
  29. } /*"C" */
  30. #endif
  31. #endif /* UART_DEMO_H */