gd32f10x_exti.c 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  1. /*!
  2. \file gd32f10x_exti.c
  3. \brief EXTI driver
  4. \version 2014-12-26, V1.0.0, firmware for GD32F10x
  5. \version 2017-06-20, V2.0.0, firmware for GD32F10x
  6. \version 2018-07-31, V2.1.0, firmware for GD32F10x
  7. \version 2020-09-30, V2.2.0, firmware for GD32F10x
  8. */
  9. /*
  10. Copyright (c) 2020, GigaDevice Semiconductor Inc.
  11. Redistribution and use in source and binary forms, with or without modification,
  12. are permitted provided that the following conditions are met:
  13. 1. Redistributions of source code must retain the above copyright notice, this
  14. list of conditions and the following disclaimer.
  15. 2. Redistributions in binary form must reproduce the above copyright notice,
  16. this list of conditions and the following disclaimer in the documentation
  17. and/or other materials provided with the distribution.
  18. 3. Neither the name of the copyright holder nor the names of its contributors
  19. may be used to endorse or promote products derived from this software without
  20. specific prior written permission.
  21. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  22. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  23. WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
  24. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
  25. INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  26. NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  27. PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  28. WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  29. ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
  30. OF SUCH DAMAGE.
  31. */
  32. #include "gd32f10x_exti.h"
  33. #define EXTI_REG_RESET_VALUE ((uint32_t)0x00000000U)
  34. /*!
  35. \brief deinitialize the EXTI
  36. \param[in] none
  37. \param[out] none
  38. \retval none
  39. */
  40. void exti_deinit(void)
  41. {
  42. /* reset the value of all the EXTI registers */
  43. EXTI_INTEN = EXTI_REG_RESET_VALUE;
  44. EXTI_EVEN = EXTI_REG_RESET_VALUE;
  45. EXTI_RTEN = EXTI_REG_RESET_VALUE;
  46. EXTI_FTEN = EXTI_REG_RESET_VALUE;
  47. EXTI_SWIEV = EXTI_REG_RESET_VALUE;
  48. }
  49. /*!
  50. \brief initialize the EXTI
  51. \param[in] linex: EXTI line number, refer to exti_line_enum
  52. only one parameter can be selected which is shown as below:
  53. \arg EXTI_x (x=0..19): EXTI line x
  54. \param[in] mode: interrupt or event mode, refer to exti_mode_enum
  55. only one parameter can be selected which is shown as below:
  56. \arg EXTI_INTERRUPT: interrupt mode
  57. \arg EXTI_EVENT: event mode
  58. \param[in] trig_type: interrupt trigger type, refer to exti_trig_type_enum
  59. only one parameter can be selected which is shown as below:
  60. \arg EXTI_TRIG_RISING: rising edge trigger
  61. \arg EXTI_TRIG_FALLING: falling trigger
  62. \arg EXTI_TRIG_BOTH: rising and falling trigger
  63. \arg EXTI_TRIG_NONE: without rising edge or falling edge trigger
  64. \param[out] none
  65. \retval none
  66. */
  67. void exti_init(exti_line_enum linex, exti_mode_enum mode, exti_trig_type_enum trig_type)
  68. {
  69. /* reset the EXTI line x */
  70. EXTI_INTEN &= ~(uint32_t)linex;
  71. EXTI_EVEN &= ~(uint32_t)linex;
  72. EXTI_RTEN &= ~(uint32_t)linex;
  73. EXTI_FTEN &= ~(uint32_t)linex;
  74. /* set the EXTI mode and enable the interrupts or events from EXTI line x */
  75. switch(mode){
  76. case EXTI_INTERRUPT:
  77. EXTI_INTEN |= (uint32_t)linex;
  78. break;
  79. case EXTI_EVENT:
  80. EXTI_EVEN |= (uint32_t)linex;
  81. break;
  82. default:
  83. break;
  84. }
  85. /* set the EXTI trigger type */
  86. switch(trig_type){
  87. case EXTI_TRIG_RISING:
  88. EXTI_RTEN |= (uint32_t)linex;
  89. EXTI_FTEN &= ~(uint32_t)linex;
  90. break;
  91. case EXTI_TRIG_FALLING:
  92. EXTI_RTEN &= ~(uint32_t)linex;
  93. EXTI_FTEN |= (uint32_t)linex;
  94. break;
  95. case EXTI_TRIG_BOTH:
  96. EXTI_RTEN |= (uint32_t)linex;
  97. EXTI_FTEN |= (uint32_t)linex;
  98. break;
  99. case EXTI_TRIG_NONE:
  100. default:
  101. break;
  102. }
  103. }
  104. /*!
  105. \brief enable the interrupts from EXTI line x
  106. \param[in] linex: EXTI line number, refer to exti_line_enum
  107. only one parameter can be selected which is shown as below:
  108. \arg EXTI_x (x=0..19): EXTI line x
  109. \param[out] none
  110. \retval none
  111. */
  112. void exti_interrupt_enable(exti_line_enum linex)
  113. {
  114. EXTI_INTEN |= (uint32_t)linex;
  115. }
  116. /*!
  117. \brief enable the events from EXTI line x
  118. \param[in] linex: EXTI line number, refer to exti_line_enum
  119. only one parameter can be selected which is shown as below:
  120. \arg EXTI_x (x=0..19): EXTI line x
  121. \param[out] none
  122. \retval none
  123. */
  124. void exti_event_enable(exti_line_enum linex)
  125. {
  126. EXTI_EVEN |= (uint32_t)linex;
  127. }
  128. /*!
  129. \brief disable the interrupt from EXTI line x
  130. \param[in] linex: EXTI line number, refer to exti_line_enum
  131. only one parameter can be selected which is shown as below:
  132. \arg EXTI_x (x=0..19): EXTI line x
  133. \param[out] none
  134. \retval none
  135. */
  136. void exti_interrupt_disable(exti_line_enum linex)
  137. {
  138. EXTI_INTEN &= ~(uint32_t)linex;
  139. }
  140. /*!
  141. \brief disable the events from EXTI line x
  142. \param[in] linex: EXTI line number, refer to exti_line_enum
  143. only one parameter can be selected which is shown as below:
  144. \arg EXTI_x (x=0..19): EXTI line x
  145. \param[out] none
  146. \retval none
  147. */
  148. void exti_event_disable(exti_line_enum linex)
  149. {
  150. EXTI_EVEN &= ~(uint32_t)linex;
  151. }
  152. /*!
  153. \brief get EXTI lines flag
  154. \param[in] linex: EXTI line number, refer to exti_line_enum
  155. only one parameter can be selected which is shown as below:
  156. \arg EXTI_x (x=0..19): EXTI line x
  157. \param[out] none
  158. \retval FlagStatus: status of flag (RESET or SET)
  159. */
  160. FlagStatus exti_flag_get(exti_line_enum linex)
  161. {
  162. if(RESET != (EXTI_PD & (uint32_t)linex)){
  163. return SET;
  164. }else{
  165. return RESET;
  166. }
  167. }
  168. /*!
  169. \brief clear EXTI lines pending flag
  170. \param[in] linex: EXTI line number, refer to exti_line_enum
  171. only one parameter can be selected which is shown as below:
  172. \arg EXTI_x (x=0..19): EXTI line x
  173. \param[out] none
  174. \retval none
  175. */
  176. void exti_flag_clear(exti_line_enum linex)
  177. {
  178. EXTI_PD = (uint32_t)linex;
  179. }
  180. /*!
  181. \brief get EXTI lines flag when the interrupt flag is set
  182. \param[in] linex: EXTI line number, refer to exti_line_enum
  183. only one parameter can be selected which is shown as below:
  184. \arg EXTI_x (x=0..19): EXTI line x
  185. \param[out] none
  186. \retval FlagStatus: status of flag (RESET or SET)
  187. */
  188. FlagStatus exti_interrupt_flag_get(exti_line_enum linex)
  189. {
  190. if(RESET != (EXTI_PD & (uint32_t)linex)){
  191. return SET;
  192. }else{
  193. return RESET;
  194. }
  195. }
  196. /*!
  197. \brief clear EXTI lines pending flag
  198. \param[in] linex: EXTI line number, refer to exti_line_enum
  199. only one parameter can be selected which is shown as below:
  200. \arg EXTI_x (x=0..19): EXTI line x
  201. \param[out] none
  202. \retval none
  203. */
  204. void exti_interrupt_flag_clear(exti_line_enum linex)
  205. {
  206. EXTI_PD = (uint32_t)linex;
  207. }
  208. /*!
  209. \brief enable EXTI software interrupt event
  210. \param[in] linex: EXTI line number, refer to exti_line_enum
  211. only one parameter can be selected which is shown as below:
  212. \arg EXTI_x (x=0..19): EXTI line x
  213. \param[out] none
  214. \retval none
  215. */
  216. void exti_software_interrupt_enable(exti_line_enum linex)
  217. {
  218. EXTI_SWIEV |= (uint32_t)linex;
  219. }
  220. /*!
  221. \brief disable EXTI software interrupt event
  222. \param[in] linex: EXTI line number, refer to exti_line_enum
  223. only one parameter can be selected which is shown as below:
  224. \arg EXTI_x (x=0..19): EXTI line x
  225. \param[out] none
  226. \retval none
  227. */
  228. void exti_software_interrupt_disable(exti_line_enum linex)
  229. {
  230. EXTI_SWIEV &= ~(uint32_t)linex;
  231. }