stm32l1xx_it.h 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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 COMP_IRQHandler(void);
  50. void TIM4_IRQHandler(void);
  51. void EXTI15_10_IRQHandler(void);
  52. void TIM6_IRQHandler(void);
  53. /* USER CODE BEGIN EFP */
  54. /* USER CODE END EFP */
  55. #ifdef __cplusplus
  56. }
  57. #endif
  58. #endif /* __STM32L1xx_IT_H */
  59. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/