gpio_int_demo.h 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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 _GPIOINTDEMO_H
  13. #define _GPIOINTDEMO_H
  14. #include "ql_gpio.h"
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18. /*===========================================================================
  19. * Macro Definition
  20. ===========================================================================*/
  21. /*===========================================================================
  22. * Enum
  23. ===========================================================================*/
  24. typedef enum
  25. {
  26. INT_CB01,
  27. INT_CB02
  28. } ql_IntSel;
  29. /*===========================================================================
  30. * Functions declaration
  31. ===========================================================================*/
  32. void ql_gpioint_app_init(void);
  33. #ifdef __cplusplus
  34. } /*"C" */
  35. #endif
  36. #endif /* _GPIOINTDEMO_H */