stm32f0xx_it.c 675 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. #include "stm32f0xx_it.h"
  2. #include "stm32f0xx_hal.h"
  3. /**
  4. * @brief This function handles Non maskable interrupt.
  5. */
  6. void NMI_Handler(void)
  7. {
  8. while (1) {}
  9. }
  10. /**
  11. * @brief This function handles Hard fault interrupt.
  12. */
  13. void HardFault_Handler(void)
  14. {
  15. while (1) {}
  16. }
  17. /**
  18. * @brief This function handles System service call via SWI instruction.
  19. */
  20. void SVC_Handler(void)
  21. {
  22. }
  23. /**
  24. * @brief This function handles Pendable request for system service.
  25. */
  26. void PendSV_Handler(void)
  27. {
  28. }
  29. /**
  30. * @brief This function handles System tick timer.
  31. */
  32. #if 0
  33. void SysTick_Handler(void)
  34. {
  35. HAL_IncTick();
  36. }
  37. #endif