stm32f4xx_it.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /**
  2. ******************************************************************************
  3. * @file stm32f4xx_it.h
  4. * @brief This file contains the headers of the interrupt handlers.
  5. ******************************************************************************
  6. * @attention
  7. *
  8. * <h2><center>&copy; Copyright (c) 2020 STMicroelectronics.
  9. * All rights reserved.</center></h2>
  10. *
  11. * This software component is licensed by ST under BSD 3-Clause license,
  12. * the "License"; You may not use this file except in compliance with the
  13. * License. You may obtain a copy of the License at:
  14. * opensource.org/licenses/BSD-3-Clause
  15. *
  16. ******************************************************************************
  17. */
  18. #ifndef __STM32F4xx_IT_H
  19. #define __STM32F4xx_IT_H
  20. #ifdef __cplusplus
  21. extern "C" {
  22. #endif
  23. void NMI_Handler(void);
  24. void HardFault_Handler(void);
  25. void MemManage_Handler(void);
  26. void BusFault_Handler(void);
  27. void UsageFault_Handler(void);
  28. void SVC_Handler(void);
  29. void DebugMon_Handler(void);
  30. void PendSV_Handler(void);
  31. void SysTick_Handler(void);
  32. #ifdef __cplusplus
  33. }
  34. #endif
  35. #endif /* __STM32F4xx_IT_H */
  36. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/