stm32f4xx_it.h 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. /* USER CODE BEGIN Header */
  2. /**
  3. ******************************************************************************
  4. * @file stm32f4xx_it.h
  5. * @brief This file contains the headers of the interrupt handlers.
  6. ******************************************************************************
  7. * @attention
  8. *
  9. * <h2><center>&copy; Copyright (c) 2019 STMicroelectronics.
  10. * All rights reserved.</center></h2>
  11. *
  12. * This software component is licensed by ST under Ultimate Liberty license
  13. * SLA0044, the "License"; You may not use this file except in compliance with
  14. * the License. You may obtain a copy of the License at:
  15. * www.st.com/SLA0044
  16. *
  17. ******************************************************************************
  18. */
  19. /* USER CODE END Header */
  20. /* Define to prevent recursive inclusion -------------------------------------*/
  21. #ifndef __STM32F4xx_IT_H
  22. #define __STM32F4xx_IT_H
  23. #ifdef __cplusplus
  24. extern "C" {
  25. #endif
  26. /* Private includes ----------------------------------------------------------*/
  27. /* USER CODE BEGIN Includes */
  28. /* USER CODE END Includes */
  29. /* Exported types ------------------------------------------------------------*/
  30. /* USER CODE BEGIN ET */
  31. /* USER CODE END ET */
  32. /* Exported constants --------------------------------------------------------*/
  33. /* USER CODE BEGIN EC */
  34. /* USER CODE END EC */
  35. /* Exported macro ------------------------------------------------------------*/
  36. /* USER CODE BEGIN EM */
  37. /* USER CODE END EM */
  38. /* Exported functions prototypes ---------------------------------------------*/
  39. void NMI_Handler(void);
  40. void HardFault_Handler(void);
  41. void MemManage_Handler(void);
  42. void BusFault_Handler(void);
  43. void UsageFault_Handler(void);
  44. void DebugMon_Handler(void);
  45. void PVD_IRQHandler(void);
  46. void DMA1_Stream0_IRQHandler(void);
  47. void DMA1_Stream1_IRQHandler(void);
  48. void DMA1_Stream5_IRQHandler(void);
  49. void ADC_IRQHandler(void);
  50. void TIM1_BRK_TIM9_IRQHandler(void);
  51. void TIM4_IRQHandler(void);
  52. void USART1_IRQHandler(void);
  53. void USART2_IRQHandler(void);
  54. void USART3_IRQHandler(void);
  55. void TIM8_UP_TIM13_IRQHandler(void);
  56. void TIM8_TRG_COM_TIM14_IRQHandler(void);
  57. void TIM5_IRQHandler(void);
  58. void UART5_IRQHandler(void);
  59. void TIM6_DAC_IRQHandler(void);
  60. void TIM7_IRQHandler(void);
  61. void DMA2_Stream0_IRQHandler(void);
  62. void DMA2_Stream1_IRQHandler(void);
  63. void DMA2_Stream2_IRQHandler(void);
  64. void DMA2_Stream3_IRQHandler(void);
  65. void OTG_FS_IRQHandler(void);
  66. void DMA2_Stream5_IRQHandler(void);
  67. void USART6_IRQHandler(void);
  68. /* USER CODE BEGIN EFP */
  69. /* USER CODE END EFP */
  70. #ifdef __cplusplus
  71. }
  72. #endif
  73. #endif /* __STM32F4xx_IT_H */
  74. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/