at32f413_exint.h 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  1. /**
  2. **************************************************************************
  3. * @file at32f413_exint.h
  4. * @version v2.0.5
  5. * @date 2022-05-20
  6. * @brief at32f413 exint header file
  7. **************************************************************************
  8. * Copyright notice & Disclaimer
  9. *
  10. * The software Board Support Package (BSP) that is made available to
  11. * download from Artery official website is the copyrighted work of Artery.
  12. * Artery authorizes customers to use, copy, and distribute the BSP
  13. * software and its related documentation for the purpose of design and
  14. * development in conjunction with Artery microcontrollers. Use of the
  15. * software is governed by this copyright notice and the following disclaimer.
  16. *
  17. * THIS SOFTWARE IS PROVIDED ON "AS IS" BASIS WITHOUT WARRANTIES,
  18. * GUARANTEES OR REPRESENTATIONS OF ANY KIND. ARTERY EXPRESSLY DISCLAIMS,
  19. * TO THE FULLEST EXTENT PERMITTED BY LAW, ALL EXPRESS, IMPLIED OR
  20. * STATUTORY OR OTHER WARRANTIES, GUARANTEES OR REPRESENTATIONS,
  21. * INCLUDING BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,
  22. * FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT.
  23. *
  24. **************************************************************************
  25. */
  26. /* Define to prevent recursive inclusion -------------------------------------*/
  27. #ifndef __AT32F413_EXINT_H
  28. #define __AT32F413_EXINT_H
  29. #ifdef __cplusplus
  30. extern "C" {
  31. #endif
  32. /* Includes ------------------------------------------------------------------*/
  33. #include "at32f413.h"
  34. /** @addtogroup AT32F413_periph_driver
  35. * @{
  36. */
  37. /** @addtogroup EXINT
  38. * @{
  39. */
  40. /** @defgroup EXINT_lines
  41. * @{
  42. */
  43. #define EXINT_LINE_NONE ((uint32_t)0x000000)
  44. #define EXINT_LINE_0 ((uint32_t)0x000001) /*!< external interrupt line 0 */
  45. #define EXINT_LINE_1 ((uint32_t)0x000002) /*!< external interrupt line 1 */
  46. #define EXINT_LINE_2 ((uint32_t)0x000004) /*!< external interrupt line 2 */
  47. #define EXINT_LINE_3 ((uint32_t)0x000008) /*!< external interrupt line 3 */
  48. #define EXINT_LINE_4 ((uint32_t)0x000010) /*!< external interrupt line 4 */
  49. #define EXINT_LINE_5 ((uint32_t)0x000020) /*!< external interrupt line 5 */
  50. #define EXINT_LINE_6 ((uint32_t)0x000040) /*!< external interrupt line 6 */
  51. #define EXINT_LINE_7 ((uint32_t)0x000080) /*!< external interrupt line 7 */
  52. #define EXINT_LINE_8 ((uint32_t)0x000100) /*!< external interrupt line 8 */
  53. #define EXINT_LINE_9 ((uint32_t)0x000200) /*!< external interrupt line 9 */
  54. #define EXINT_LINE_10 ((uint32_t)0x000400) /*!< external interrupt line 10 */
  55. #define EXINT_LINE_11 ((uint32_t)0x000800) /*!< external interrupt line 11 */
  56. #define EXINT_LINE_12 ((uint32_t)0x001000) /*!< external interrupt line 12 */
  57. #define EXINT_LINE_13 ((uint32_t)0x002000) /*!< external interrupt line 13 */
  58. #define EXINT_LINE_14 ((uint32_t)0x004000) /*!< external interrupt line 14 */
  59. #define EXINT_LINE_15 ((uint32_t)0x008000) /*!< external interrupt line 15 */
  60. #define EXINT_LINE_16 ((uint32_t)0x010000) /*!< external interrupt line 16 connected to the pvm output */
  61. #define EXINT_LINE_17 ((uint32_t)0x020000) /*!< external interrupt line 17 connected to the rtc alarm event */
  62. #define EXINT_LINE_18 ((uint32_t)0x040000) /*!< external interrupt line 18 connected to the usb fs wakeup from suspend event */
  63. /**
  64. * @}
  65. */
  66. /** @defgroup EXINT_exported_types
  67. * @{
  68. */
  69. /**
  70. * @brief exint line mode type
  71. */
  72. typedef enum
  73. {
  74. EXINT_LINE_INTERRUPUT = 0x00, /*!< external interrupt line interrupt mode */
  75. EXINT_LINE_EVENT = 0x01 /*!< external interrupt line event mode */
  76. } exint_line_mode_type;
  77. /**
  78. * @brief exint polarity configuration type
  79. */
  80. typedef enum
  81. {
  82. EXINT_TRIGGER_RISING_EDGE = 0x00, /*!< external interrupt line rising trigger mode */
  83. EXINT_TRIGGER_FALLING_EDGE = 0x01, /*!< external interrupt line falling trigger mode */
  84. EXINT_TRIGGER_BOTH_EDGE = 0x02 /*!< external interrupt line both rising and falling trigger mode */
  85. } exint_polarity_config_type;
  86. /**
  87. * @brief exint init type
  88. */
  89. typedef struct
  90. {
  91. exint_line_mode_type line_mode; /*!< choose mode event or interrupt mode */
  92. uint32_t line_select; /*!< select the exint line, availiable for single line or multiple lines */
  93. exint_polarity_config_type line_polarity; /*!< select the tregger polarity, with rising edge, falling edge or both edge */
  94. confirm_state line_enable; /*!< enable or disable exint */
  95. } exint_init_type;
  96. /**
  97. * @brief type define exint register all
  98. */
  99. typedef struct
  100. {
  101. /**
  102. * @brief exint inten register, offset:0x00
  103. */
  104. union
  105. {
  106. __IO uint32_t inten;
  107. struct
  108. {
  109. __IO uint32_t intenx : 23;/* [22:0] */
  110. __IO uint32_t reserved1 : 9;/* [31:23] */
  111. } inten_bit;
  112. };
  113. /**
  114. * @brief exint evten register, offset:0x04
  115. */
  116. union
  117. {
  118. __IO uint32_t evten;
  119. struct
  120. {
  121. __IO uint32_t evtenx : 23;/* [22:0] */
  122. __IO uint32_t reserved1 : 9;/* [31:23] */
  123. } evten_bit;
  124. };
  125. /**
  126. * @brief exint polcfg1 register, offset:0x08
  127. */
  128. union
  129. {
  130. __IO uint32_t polcfg1;
  131. struct
  132. {
  133. __IO uint32_t rpx : 23;/* [22:0] */
  134. __IO uint32_t reserved1 : 9;/* [31:23] */
  135. } polcfg1_bit;
  136. };
  137. /**
  138. * @brief exint polcfg2 register, offset:0x0C
  139. */
  140. union
  141. {
  142. __IO uint32_t polcfg2;
  143. struct
  144. {
  145. __IO uint32_t fpx : 23;/* [22:0] */
  146. __IO uint32_t reserved1 : 9;/* [31:23] */
  147. } polcfg2_bit;
  148. };
  149. /**
  150. * @brief exint swtrg register, offset:0x10
  151. */
  152. union
  153. {
  154. __IO uint32_t swtrg;
  155. struct
  156. {
  157. __IO uint32_t swtx : 23;/* [22:0] */
  158. __IO uint32_t reserved1 : 9;/* [31:23] */
  159. } swtrg_bit;
  160. };
  161. /**
  162. * @brief exint intsts register, offset:0x14
  163. */
  164. union
  165. {
  166. __IO uint32_t intsts;
  167. struct
  168. {
  169. __IO uint32_t linex : 23;/* [22:0] */
  170. __IO uint32_t reserved1 : 9;/* [31:23] */
  171. } intsts_bit;
  172. };
  173. } exint_type;
  174. /**
  175. * @}
  176. */
  177. #define EXINT ((exint_type *) EXINT_BASE)
  178. /** @defgroup EXINT_exported_functions
  179. * @{
  180. */
  181. void exint_reset(void);
  182. void exint_default_para_init(exint_init_type *exint_struct);
  183. void exint_init(exint_init_type *exint_struct);
  184. void exint_flag_clear(uint32_t exint_line);
  185. flag_status exint_flag_get(uint32_t exint_line);
  186. void exint_software_interrupt_event_generate(uint32_t exint_line);
  187. void exint_interrupt_enable(uint32_t exint_line, confirm_state new_state);
  188. void exint_event_enable(uint32_t exint_line, confirm_state new_state);
  189. /**
  190. * @}
  191. */
  192. /**
  193. * @}
  194. */
  195. /**
  196. * @}
  197. */
  198. #ifdef __cplusplus
  199. }
  200. #endif
  201. #endif