stm32f0xx_it.c 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. /**
  2. ******************************************************************************
  3. * @file stm32f0xx_it.c
  4. * @author MCD Application Team
  5. * @version V1.0.0
  6. * @date 23-March-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.h>
  31. /** @addtogroup STM32F0-Discovery_Demo
  32. * @{
  33. */
  34. /** @addtogroup STM32F0XX_IT
  35. * @brief Interrupts driver modules
  36. * @{
  37. */
  38. /* Private typedef -----------------------------------------------------------*/
  39. /* Private define ------------------------------------------------------------*/
  40. /* Private macro -------------------------------------------------------------*/
  41. /* Private variables ---------------------------------------------------------*/
  42. /* Private function prototypes -----------------------------------------------*/
  43. /* Private functions ---------------------------------------------------------*/
  44. /******************************************************************************/
  45. /* Cortex-M0 Processor Exceptions Handlers */
  46. /******************************************************************************/
  47. /**
  48. * @brief This function handles NMI exception.
  49. * @param None
  50. * @retval None
  51. */
  52. void NMI_Handler(void)
  53. {
  54. }
  55. /**
  56. * @brief This function handles SVCall exception.
  57. * @param None
  58. * @retval None
  59. */
  60. void SVC_Handler(void)
  61. {
  62. }
  63. /******************************************************************************/
  64. /* STM32F0xx Peripherals Interrupt Handlers */
  65. /* Add here the Interrupt Handler for the used peripheral(s) (PPP), for the */
  66. /* available peripheral interrupt handler's name please refer to the startup */
  67. /* file (startup_stm32f0xx.s). */
  68. /******************************************************************************/
  69. /**
  70. * @brief This function handles PPP interrupt request.
  71. * @param None
  72. * @retval None
  73. */
  74. /*void PPP_IRQHandler(void)
  75. {
  76. }*/
  77. /**
  78. * @}
  79. */
  80. /**
  81. * @}
  82. */
  83. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/