You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

stm32l1xx_it.h 2.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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) 2020 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. /* USER CODE BEGIN EFP */
  49. /* USER CODE END EFP */
  50. #ifdef __cplusplus
  51. }
  52. #endif
  53. #endif /* __STM32L1xx_IT_H */
  54. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/