adc_demo.h 1.5 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 _ADCDEMO_H
  13. #define _ADCDEMO_H
  14. #include "ql_app_feature_config.h"
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18. /*===========================================================================
  19. * Enumeration Definition
  20. ===========================================================================*/
  21. /*===========================================================================
  22. * Struct
  23. ===========================================================================*/
  24. typedef int QlADCStatus;
  25. typedef void * ql_task_t;
  26. /*===========================================================================
  27. * Functions declaration
  28. ===========================================================================*/
  29. void ql_adc_app_init(void);
  30. #ifdef __cplusplus
  31. } /*"C" */
  32. #endif
  33. #endif /* _ADCDEMO_H */