stm32f10x_it.c 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. /**
  2. ******************************************************************************
  3. * @file Project/STM32F10x_StdPeriph_Template/stm32f10x_it.c
  4. * @author MCD Application Team
  5. * @version V3.5.0
  6. * @date 08-April-2011
  7. * @brief Main Interrupt Service Routines.
  8. * This file provides template for all exceptions handler and
  9. * peripherals interrupt service routine.
  10. ******************************************************************************
  11. * @attention
  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 2011 STMicroelectronics</center></h2>
  21. ******************************************************************************
  22. */
  23. /* Includes ------------------------------------------------------------------*/
  24. #include "stm32f10x_it.h"
  25. /** @addtogroup STM32F10x_StdPeriph_Template
  26. * @{
  27. */
  28. /* Private typedef -----------------------------------------------------------*/
  29. /* Private define ------------------------------------------------------------*/
  30. /* Private macro -------------------------------------------------------------*/
  31. /* Private variables ---------------------------------------------------------*/
  32. /* Private function prototypes -----------------------------------------------*/
  33. /* Private functions ---------------------------------------------------------*/
  34. /******************************************************************************/
  35. /* Cortex-M3 Processor Exceptions Handlers */
  36. /******************************************************************************/
  37. /**
  38. * @brief This function handles NMI exception.
  39. * @param None
  40. * @retval None
  41. */
  42. void NMI_Handler(void)
  43. {
  44. }
  45. /**
  46. * @brief This function handles Hard Fault exception.
  47. * @param None
  48. * @retval None
  49. */
  50. void HardFault_Handler(void)
  51. {
  52. /* Go to infinite loop when Hard Fault exception occurs */
  53. while (1)
  54. {
  55. }
  56. }
  57. /**
  58. * @brief This function handles Memory Manage exception.
  59. * @param None
  60. * @retval None
  61. */
  62. void MemManage_Handler(void)
  63. {
  64. /* Go to infinite loop when Memory Manage exception occurs */
  65. while (1)
  66. {
  67. }
  68. }
  69. /**
  70. * @brief This function handles Bus Fault exception.
  71. * @param None
  72. * @retval None
  73. */
  74. void BusFault_Handler(void)
  75. {
  76. /* Go to infinite loop when Bus Fault exception occurs */
  77. while (1)
  78. {
  79. }
  80. }
  81. /**
  82. * @brief This function handles Usage Fault exception.
  83. * @param None
  84. * @retval None
  85. */
  86. void UsageFault_Handler(void)
  87. {
  88. /* Go to infinite loop when Usage Fault exception occurs */
  89. while (1)
  90. {
  91. }
  92. }
  93. /**
  94. * @brief This function handles SVCall exception.
  95. * @param None
  96. * @retval None
  97. */
  98. void SVC_Handler(void)
  99. {
  100. }
  101. /**
  102. * @brief This function handles Debug Monitor exception.
  103. * @param None
  104. * @retval None
  105. */
  106. void DebugMon_Handler(void)
  107. {
  108. }
  109. /**
  110. * @brief This function handles PendSVC exception.
  111. * @param None
  112. * @retval None
  113. */
  114. void PendSV_Handler(void)
  115. {
  116. }
  117. /**
  118. * @brief This function handles SysTick Handler.
  119. * @param None
  120. * @retval None
  121. */
  122. void SysTick_Handler(void)
  123. {
  124. }
  125. /******************************************************************************/
  126. /* STM32F10x Peripherals Interrupt Handlers */
  127. /* Add here the Interrupt Handler for the used peripheral(s) (PPP), for the */
  128. /* available peripheral interrupt handler's name please refer to the startup */
  129. /* file (startup_stm32f10x_xx.s). */
  130. /******************************************************************************/
  131. /**
  132. * @brief This function handles PPP interrupt request.
  133. * @param None
  134. * @retval None
  135. */
  136. /*void PPP_IRQHandler(void)
  137. {
  138. }*/
  139. /**
  140. * @}
  141. */
  142. /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/