gd32e230_exti.c 8.0 KB

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