stm32f4xx_it.h 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /**
  2. ******************************************************************************
  3. * @file SysTick/stm32f4xx_it.h
  4. * @author MCD Application Team
  5. * @version V1.0.0
  6. * @date 19-September-2011
  7. * @brief This file contains the headers of the interrupt handlers.
  8. ******************************************************************************
  9. * @attention
  10. *
  11. * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
  12. * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE
  13. * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY
  14. * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING
  15. * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE
  16. * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
  17. *
  18. * <h2><center>&copy; COPYRIGHT 2011 STMicroelectronics</center></h2>
  19. ******************************************************************************
  20. */
  21. /* Define to prevent recursive inclusion -------------------------------------*/
  22. #ifndef __STM32F4xx_IT_H
  23. #define __STM32F4xx_IT_H
  24. #ifdef __cplusplus
  25. extern "C" {
  26. #endif
  27. /* Includes ------------------------------------------------------------------*/
  28. #include "stm32f4xx.h"
  29. /* Exported types ------------------------------------------------------------*/
  30. /* Exported constants --------------------------------------------------------*/
  31. /* Exported macro ------------------------------------------------------------*/
  32. /* Exported functions ------------------------------------------------------- */
  33. void NMI_Handler(void);
  34. void HardFault_Handler(void);
  35. void MemManage_Handler(void);
  36. void BusFault_Handler(void);
  37. void UsageFault_Handler(void);
  38. void SVC_Handler(void);
  39. void DebugMon_Handler(void);
  40. void PendSV_Handler(void);
  41. void SysTick_Handler(void);
  42. #ifdef __cplusplus
  43. }
  44. #endif
  45. #endif /* __STM32F4xx_IT_H */
  46. /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/