1
0

stm32f10x_it.c 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330
  1. /**
  2. ******************************************************************************
  3. * @file Project/Template/stm32f10x_it.c
  4. * @author MCD Application Team
  5. * @version V3.1.0
  6. * @date 06/19/2009
  7. * @brief Main Interrupt Service Routines.
  8. * This file provides template for all exceptions handler and
  9. * peripherals interrupt service routine.
  10. ******************************************************************************
  11. * @copy
  12. *
  13. * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
  14. * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE
  15. * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY
  16. * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING
  17. * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE
  18. * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
  19. *
  20. * <h2><center>&copy; COPYRIGHT 2009 STMicroelectronics</center></h2>
  21. */
  22. /* Includes ------------------------------------------------------------------*/
  23. #include "stm32f10x_it.h"
  24. #include <board.h>
  25. #include <rtthread.h>
  26. /** @addtogroup Template_Project
  27. * @{
  28. */
  29. /* Private typedef -----------------------------------------------------------*/
  30. /* Private define ------------------------------------------------------------*/
  31. /* Private macro -------------------------------------------------------------*/
  32. /* Private variables ---------------------------------------------------------*/
  33. /* Private function prototypes -----------------------------------------------*/
  34. /* Private functions ---------------------------------------------------------*/
  35. /******************************************************************************/
  36. /* Cortex-M3 Processor Exceptions Handlers */
  37. /******************************************************************************/
  38. /**
  39. * @brief This function handles NMI exception.
  40. * @param None
  41. * @retval None
  42. */
  43. void NMI_Handler(void)
  44. {
  45. }
  46. /**
  47. * @brief This function handles Hard Fault exception.
  48. * @param None
  49. * @retval None
  50. */
  51. void HardFault_Handler(void)
  52. {
  53. /* Go to infinite loop when Hard Fault exception occurs */
  54. while (1)
  55. {
  56. }
  57. }
  58. /**
  59. * @brief This function handles Memory Manage exception.
  60. * @param None
  61. * @retval None
  62. */
  63. void MemManage_Handler(void)
  64. {
  65. /* Go to infinite loop when Memory Manage exception occurs */
  66. while (1)
  67. {
  68. }
  69. }
  70. /**
  71. * @brief This function handles Bus Fault exception.
  72. * @param None
  73. * @retval None
  74. */
  75. void BusFault_Handler(void)
  76. {
  77. /* Go to infinite loop when Bus Fault exception occurs */
  78. while (1)
  79. {
  80. }
  81. }
  82. /**
  83. * @brief This function handles Usage Fault exception.
  84. * @param None
  85. * @retval None
  86. */
  87. void UsageFault_Handler(void)
  88. {
  89. /* Go to infinite loop when Usage Fault exception occurs */
  90. while (1)
  91. {
  92. }
  93. }
  94. /**
  95. * @brief This function handles SVCall exception.
  96. * @param None
  97. * @retval None
  98. */
  99. void SVC_Handler(void)
  100. {
  101. }
  102. /**
  103. * @brief This function handles Debug Monitor exception.
  104. * @param None
  105. * @retval None
  106. */
  107. void DebugMon_Handler(void)
  108. {
  109. }
  110. /******************************************************************************/
  111. /* STM32F10x Peripherals Interrupt Handlers */
  112. /* Add here the Interrupt Handler for the used peripheral(s) (PPP), for the */
  113. /* available peripheral interrupt handler's name please refer to the startup */
  114. /* file (startup_stm32f10x_xx.s). */
  115. /******************************************************************************/
  116. /*******************************************************************************
  117. * Function Name : DMA1_Channel2_IRQHandler
  118. * Description : This function handles DMA1 Channel 2 interrupt request.
  119. * Input : None
  120. * Output : None
  121. * Return : None
  122. *******************************************************************************/
  123. void DMA1_Channel2_IRQHandler(void)
  124. {
  125. #ifdef RT_USING_UART3
  126. extern struct rt_device uart3_device;
  127. extern void rt_hw_serial_dma_tx_isr(struct rt_device *device);
  128. /* enter interrupt */
  129. rt_interrupt_enter();
  130. if (DMA_GetITStatus(DMA1_IT_TC2))
  131. {
  132. /* transmission complete, invoke serial dma tx isr */
  133. rt_hw_serial_dma_tx_isr(&uart3_device);
  134. }
  135. /* clear DMA flag */
  136. DMA_ClearFlag(DMA1_FLAG_TC2 | DMA1_FLAG_TE2);
  137. /* leave interrupt */
  138. rt_interrupt_leave();
  139. #endif
  140. }
  141. /*******************************************************************************
  142. * Function Name : USART1_IRQHandler
  143. * Description : This function handles USART1 global interrupt request.
  144. * Input : None
  145. * Output : None
  146. * Return : None
  147. *******************************************************************************/
  148. void USART1_IRQHandler(void)
  149. {
  150. #ifdef RT_USING_UART1
  151. extern struct rt_device uart1_device;
  152. extern void rt_hw_serial_isr(struct rt_device *device);
  153. /* enter interrupt */
  154. rt_interrupt_enter();
  155. rt_hw_serial_isr(&uart1_device);
  156. /* leave interrupt */
  157. rt_interrupt_leave();
  158. #endif
  159. }
  160. /*******************************************************************************
  161. * Function Name : USART2_IRQHandler
  162. * Description : This function handles USART2 global interrupt request.
  163. * Input : None
  164. * Output : None
  165. * Return : None
  166. *******************************************************************************/
  167. void USART2_IRQHandler(void)
  168. {
  169. #ifdef RT_USING_UART2
  170. extern struct rt_device uart2_device;
  171. extern void rt_hw_serial_isr(struct rt_device *device);
  172. /* enter interrupt */
  173. rt_interrupt_enter();
  174. rt_hw_serial_isr(&uart2_device);
  175. /* leave interrupt */
  176. rt_interrupt_leave();
  177. #endif
  178. }
  179. /*******************************************************************************
  180. * Function Name : USART3_IRQHandler
  181. * Description : This function handles USART3 global interrupt request.
  182. * Input : None
  183. * Output : None
  184. * Return : None
  185. *******************************************************************************/
  186. void USART3_IRQHandler(void)
  187. {
  188. #ifdef RT_USING_UART3
  189. extern struct rt_device uart3_device;
  190. extern void rt_hw_serial_isr(struct rt_device *device);
  191. /* enter interrupt */
  192. rt_interrupt_enter();
  193. rt_hw_serial_isr(&uart3_device);
  194. /* leave interrupt */
  195. rt_interrupt_leave();
  196. #endif
  197. }
  198. #if defined(RT_USING_DFS) && STM32_USE_SDIO
  199. /*******************************************************************************
  200. * Function Name : SDIO_IRQHandler
  201. * Description : This function handles SDIO global interrupt request.
  202. * Input : None
  203. * Output : None
  204. * Return : None
  205. *******************************************************************************/
  206. void SDIO_IRQHandler(void)
  207. {
  208. extern int SD_ProcessIRQSrc(void);
  209. /* enter interrupt */
  210. rt_interrupt_enter();
  211. /* Process All SDIO Interrupt Sources */
  212. SD_ProcessIRQSrc();
  213. /* leave interrupt */
  214. rt_interrupt_leave();
  215. }
  216. #endif
  217. #ifdef RT_USING_LWIP
  218. #ifdef STM32F10X_CL
  219. /*******************************************************************************
  220. * Function Name : ETH_IRQHandler
  221. * Description : This function handles ETH interrupt request.
  222. * Input : None
  223. * Output : None
  224. * Return : None
  225. *******************************************************************************/
  226. void ETH_IRQHandler(void)
  227. {
  228. extern void rt_hw_stm32_eth_isr(void);
  229. /* enter interrupt */
  230. rt_interrupt_enter();
  231. rt_hw_stm32_eth_isr();
  232. /* leave interrupt */
  233. rt_interrupt_leave();
  234. }
  235. #else
  236. #if (STM32_ETH_IF == 0)
  237. /*******************************************************************************
  238. * Function Name : EXTI0_IRQHandler
  239. * Description : This function handles External interrupt Line 0 request.
  240. * Input : None
  241. * Output : None
  242. * Return : None
  243. *******************************************************************************/
  244. void EXTI0_IRQHandler(void)
  245. {
  246. extern void enc28j60_isr(void);
  247. /* enter interrupt */
  248. rt_interrupt_enter();
  249. enc28j60_isr();
  250. /* Clear the Key Button EXTI line pending bit */
  251. EXTI_ClearITPendingBit(EXTI_Line0);
  252. /* leave interrupt */
  253. rt_interrupt_leave();
  254. }
  255. #endif
  256. #if (STM32_ETH_IF == 1)
  257. /*******************************************************************************
  258. * Function Name : EXTI9_5_IRQHandler
  259. * Description : This function handles External lines 9 to 5 interrupt request.
  260. * Input : None
  261. * Output : None
  262. * Return : None
  263. *******************************************************************************/
  264. void EXTI9_5_IRQHandler(void)
  265. {
  266. extern void rt_dm9000_isr(void);
  267. /* enter interrupt */
  268. rt_interrupt_enter();
  269. rt_dm9000_isr();
  270. /* Clear the Key Button EXTI line pending bit */
  271. EXTI_ClearITPendingBit(EXTI_Line7);
  272. /* leave interrupt */
  273. rt_interrupt_leave();
  274. }
  275. #endif
  276. #endif
  277. #endif /* end of RT_USING_LWIP */
  278. /**
  279. * @}
  280. */
  281. /******************* (C) COPYRIGHT 2009 STMicroelectronics *****END OF FILE****/