stm32f2xx_it.h 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /**
  2. ******************************************************************************
  3. * @file Project/STM32F2xx_StdPeriph_Template/stm32f2xx_it.h
  4. * @author MCD Application Team
  5. * @version V1.2.0
  6. * @date 13-April-2012
  7. * @brief This file contains the headers of the interrupt handlers.
  8. ******************************************************************************
  9. * @attention
  10. *
  11. * Copyright (c) 2012 STMicroelectronics.
  12. * All rights reserved.
  13. *
  14. * This software is licensed under terms that can be found in the LICENSE file
  15. * in the root directory of this software component.
  16. * If no LICENSE file comes with this software, it is provided AS-IS.
  17. *
  18. ******************************************************************************
  19. */
  20. /* Define to prevent recursive inclusion -------------------------------------*/
  21. #ifndef __STM32F2xx_IT_H
  22. #define __STM32F2xx_IT_H
  23. #ifdef __cplusplus
  24. extern "C" {
  25. #endif
  26. /* Includes ------------------------------------------------------------------*/
  27. #include "stm32f2xx.h"
  28. /* Exported types ------------------------------------------------------------*/
  29. /* Exported constants --------------------------------------------------------*/
  30. /* Exported macro ------------------------------------------------------------*/
  31. /* Exported functions ------------------------------------------------------- */
  32. void NMI_Handler(void);
  33. void HardFault_Handler(void);
  34. void MemManage_Handler(void);
  35. void BusFault_Handler(void);
  36. void UsageFault_Handler(void);
  37. void SVC_Handler(void);
  38. void DebugMon_Handler(void);
  39. void PendSV_Handler(void);
  40. void SysTick_Handler(void);
  41. #ifdef __cplusplus
  42. }
  43. #endif
  44. #endif /* __STM32F2xx_IT_H */