stm32l1xx_it.h 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /* USER CODE BEGIN Header */
  2. /**
  3. ******************************************************************************
  4. * @file stm32l1xx_it.h
  5. * @brief This file contains the headers of the interrupt handlers.
  6. ******************************************************************************
  7. * @attention
  8. *
  9. * <h2><center>&copy; Copyright (c) 2021 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. /* USER CODE END Header */
  20. /* Define to prevent recursive inclusion -------------------------------------*/
  21. #ifndef __STM32L1xx_IT_H
  22. #define __STM32L1xx_IT_H
  23. #ifdef __cplusplus
  24. extern "C" {
  25. #endif
  26. /* Private includes ----------------------------------------------------------*/
  27. /* USER CODE BEGIN Includes */
  28. /* USER CODE END Includes */
  29. /* Exported types ------------------------------------------------------------*/
  30. /* USER CODE BEGIN ET */
  31. /* USER CODE END ET */
  32. /* Exported constants --------------------------------------------------------*/
  33. /* USER CODE BEGIN EC */
  34. /* USER CODE END EC */
  35. /* Exported macro ------------------------------------------------------------*/
  36. /* USER CODE BEGIN EM */
  37. /* USER CODE END EM */
  38. /* Exported functions prototypes ---------------------------------------------*/
  39. void NMI_Handler(void);
  40. void HardFault_Handler(void);
  41. void MemManage_Handler(void);
  42. void BusFault_Handler(void);
  43. void UsageFault_Handler(void);
  44. void SVC_Handler(void);
  45. void DebugMon_Handler(void);
  46. void PendSV_Handler(void);
  47. void SysTick_Handler(void);
  48. void DMA1_Channel1_IRQHandler(void);
  49. void DMA1_Channel4_IRQHandler(void);
  50. void DMA1_Channel5_IRQHandler(void);
  51. void USB_LP_IRQHandler(void);
  52. void COMP_IRQHandler(void);
  53. void TIM4_IRQHandler(void);
  54. void USART1_IRQHandler(void);
  55. void EXTI15_10_IRQHandler(void);
  56. void TIM6_IRQHandler(void);
  57. /* USER CODE BEGIN EFP */
  58. /* USER CODE END EFP */
  59. #ifdef __cplusplus
  60. }
  61. #endif
  62. #endif /* __STM32L1xx_IT_H */