stm32f2xx_it.h 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /**
  2. ******************************************************************************
  3. * @file LwIP/LwIP_HTTP_Server_Socket_RTOS/Inc/stm32f2xx_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 __STM32F2xx_IT_H
  21. #define __STM32F2xx_IT_H
  22. #ifdef __cplusplus
  23. extern "C" {
  24. #endif
  25. /* Includes ------------------------------------------------------------------*/
  26. #include "stm32f2xx.h"
  27. /* Exported types ------------------------------------------------------------*/
  28. /* Exported constants --------------------------------------------------------*/
  29. /* Exported macro ------------------------------------------------------------*/
  30. /* Exported functions ------------------------------------------------------- */
  31. void NMI_Handler(void);
  32. void HardFault_Handler(void);
  33. void MemManage_Handler(void);
  34. void BusFault_Handler(void);
  35. void UsageFault_Handler(void);
  36. void DebugMon_Handler(void);
  37. void SysTick_Handler(void);
  38. #ifdef __cplusplus
  39. }
  40. #endif
  41. #endif /* __STM32F2xx_IT_H */
  42. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/