stm32f0xx_it.c 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. /**
  2. ******************************************************************************
  3. * @file SPI/SPI_MSD/stm32f0xx_it.c
  4. * @author MCD Application Team
  5. * @version V1.0.0
  6. * @date 18-May-2012
  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. * <h2><center>&copy; COPYRIGHT 2012 STMicroelectronics</center></h2>
  14. *
  15. * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License");
  16. * You may not use this file except in compliance with the License.
  17. * You may obtain a copy of the License at:
  18. *
  19. * http://www.st.com/software_license_agreement_liberty_v2
  20. *
  21. * Unless required by applicable law or agreed to in writing, software
  22. * distributed under the License is distributed on an "AS IS" BASIS,
  23. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  24. * See the License for the specific language governing permissions and
  25. * limitations under the License.
  26. *
  27. ******************************************************************************
  28. */
  29. /* Includes ------------------------------------------------------------------*/
  30. #include "stm32f0xx_it.h"
  31. /** @addtogroup STM32F0xx_StdPeriph_Examples
  32. * @{
  33. */
  34. /** @addtogroup SPI_MSD
  35. * @{
  36. */
  37. /* Private typedef -----------------------------------------------------------*/
  38. /* Private define ------------------------------------------------------------*/
  39. /* Private macro -------------------------------------------------------------*/
  40. /* Private variables ---------------------------------------------------------*/
  41. /* Private function prototypes -----------------------------------------------*/
  42. /* Private functions ---------------------------------------------------------*/
  43. /******************************************************************************/
  44. /* Cortex-M0 Processor Exceptions Handlers */
  45. /******************************************************************************/
  46. /**
  47. * @brief This function handles NMI exception.
  48. * @param None
  49. * @retval None
  50. */
  51. void NMI_Handler(void)
  52. {
  53. }
  54. /**
  55. * @brief This function handles Hard Fault exception.
  56. * @param None
  57. * @retval None
  58. */
  59. void HardFault_Handler(void)
  60. {
  61. /* Go to infinite loop when Hard Fault exception occurs */
  62. while (1)
  63. {
  64. }
  65. }
  66. /**
  67. * @brief This function handles SVCall exception.
  68. * @param None
  69. * @retval None
  70. */
  71. void SVC_Handler(void)
  72. {
  73. }
  74. /**
  75. * @brief This function handles PendSVC exception.
  76. * @param None
  77. * @retval None
  78. */
  79. void PendSV_Handler(void)
  80. {
  81. }
  82. /**
  83. * @brief This function handles SysTick Handler.
  84. * @param None
  85. * @retval None
  86. */
  87. void SysTick_Handler(void)
  88. {
  89. }
  90. /******************************************************************************/
  91. /* STM32F0xx Peripherals Interrupt Handlers */
  92. /* Add here the Interrupt Handler for the used peripheral(s) (PPP), for the */
  93. /* available peripheral interrupt handler's name please refer to the startup */
  94. /* file (startup_stm32f0xx.s). */
  95. /******************************************************************************/
  96. /**
  97. * @brief This function handles PPP interrupt request.
  98. * @param None
  99. * @retval None
  100. */
  101. /*void PPP_IRQHandler(void)
  102. {
  103. }*/
  104. /**
  105. * @}
  106. */
  107. /**
  108. * @}
  109. */
  110. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/