You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
1.7 KiB

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