at32f415_exint.h 7.6 KB

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