stm32f4xx_it.h 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /*
  2. ******************************************************************************
  3. * @file stm32f4xx_it.h
  4. * @author MCD Application Team
  5. * @version V1.0.0
  6. * @date 31-October-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; Portions COPYRIGHT 2011 STMicroelectronics</center></h2>
  19. ******************************************************************************
  20. */
  21. /**
  22. ******************************************************************************
  23. * <h2><center>&copy; Portions COPYRIGHT 2012 Embest Tech. Co., Ltd.</center></h2>
  24. * @file stm32f4xx_it.h
  25. * @author CMP Team
  26. * @version V1.0.0
  27. * @date 28-December-2012
  28. * @brief This file contains the headers of the interrupt handlers.
  29. * Modified to support the STM32F4DISCOVERY, STM32F4DIS-BB and
  30. * STM32F4DIS-LCD modules.
  31. ******************************************************************************
  32. * @attention
  33. *
  34. * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
  35. * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE
  36. * TIME. AS A RESULT, Embest SHALL NOT BE HELD LIABLE FOR ANY DIRECT, INDIRECT
  37. * OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE CONTENT
  38. * OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING INFORMATION
  39. * CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
  40. ******************************************************************************
  41. */
  42. /* Define to prevent recursive inclusion -------------------------------------*/
  43. #ifndef __STM32F4xx_IT_H
  44. #define __STM32F4xx_IT_H
  45. #ifdef __cplusplus
  46. extern "C" {
  47. #endif
  48. /* Includes ------------------------------------------------------------------*/
  49. #include "stm32f4xx.h"
  50. /* Exported types ------------------------------------------------------------*/
  51. /* Exported constants --------------------------------------------------------*/
  52. /* Exported macro ------------------------------------------------------------*/
  53. /* Exported functions ------------------------------------------------------- */
  54. void NMI_Handler(void);
  55. void HardFault_Handler(void);
  56. void MemManage_Handler(void);
  57. void BusFault_Handler(void);
  58. void UsageFault_Handler(void);
  59. void SVC_Handler(void);
  60. void DebugMon_Handler(void);
  61. void PendSV_Handler(void);
  62. void SysTick_Handler(void);
  63. #ifdef __cplusplus
  64. }
  65. #endif
  66. #endif /* __STM32F4xx_IT_H */
  67. /*********** Portions COPYRIGHT 2012 Embest Tech. Co., Ltd.*****END OF FILE****/