stm32h7xx_it.h 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /* USER CODE BEGIN Header */
  2. /**
  3. ******************************************************************************
  4. * @file stm32h7xx_it.h
  5. * @brief This file contains the headers of the interrupt handlers.
  6. ******************************************************************************
  7. * @attention
  8. *
  9. * Copyright (c) 2022 STMicroelectronics.
  10. * All rights reserved.
  11. *
  12. * This software is licensed under terms that can be found in the LICENSE file
  13. * in the root directory of this software component.
  14. * If no LICENSE file comes with this software, it is provided AS-IS.
  15. *
  16. ******************************************************************************
  17. */
  18. /* USER CODE END Header */
  19. /* Define to prevent recursive inclusion -------------------------------------*/
  20. #ifndef __STM32H7xx_IT_H
  21. #define __STM32H7xx_IT_H
  22. #ifdef __cplusplus
  23. extern "C" {
  24. #endif
  25. /* Private includes ----------------------------------------------------------*/
  26. /* USER CODE BEGIN Includes */
  27. /* USER CODE END Includes */
  28. /* Exported types ------------------------------------------------------------*/
  29. /* USER CODE BEGIN ET */
  30. /* USER CODE END ET */
  31. /* Exported constants --------------------------------------------------------*/
  32. /* USER CODE BEGIN EC */
  33. /* USER CODE END EC */
  34. /* Exported macro ------------------------------------------------------------*/
  35. /* USER CODE BEGIN EM */
  36. /* USER CODE END EM */
  37. /* Exported functions prototypes ---------------------------------------------*/
  38. void NMI_Handler(void);
  39. void HardFault_Handler(void);
  40. void MemManage_Handler(void);
  41. void BusFault_Handler(void);
  42. void UsageFault_Handler(void);
  43. void SVC_Handler(void);
  44. void DebugMon_Handler(void);
  45. void PendSV_Handler(void);
  46. void SysTick_Handler(void);
  47. void TIM3_IRQHandler(void);
  48. void OTG_HS_IRQHandler(void);
  49. /* USER CODE BEGIN EFP */
  50. /* USER CODE END EFP */
  51. #ifdef __cplusplus
  52. }
  53. #endif
  54. #endif /* __STM32H7xx_IT_H */