stm32l0xx_it.h 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /**
  2. ******************************************************************************
  3. * @file Templates/Inc/stm32l0xx_it.h
  4. * @author MCD Application Team
  5. * @brief This file contains the headers of the interrupt handlers.
  6. ******************************************************************************
  7. * @attention
  8. *
  9. * Copyright (c) 2016 STMicroelectronics.
  10. * All rights reserved.
  11. *
  12. * This software is licensed under terms that can be found in the LICENSE file
  13. * in the root directory of this software component.
  14. * If no LICENSE file comes with this software, it is provided AS-IS.
  15. *
  16. ******************************************************************************
  17. */
  18. /* Define to prevent recursive inclusion -------------------------------------*/
  19. #ifndef __STM32L0xx_IT_H
  20. #define __STM32L0xx_IT_H
  21. #ifdef __cplusplus
  22. extern "C" {
  23. #endif
  24. /* Includes ------------------------------------------------------------------*/
  25. /* Exported types ------------------------------------------------------------*/
  26. /* Exported constants --------------------------------------------------------*/
  27. /* Exported macro ------------------------------------------------------------*/
  28. /* Exported functions ------------------------------------------------------- */
  29. void NMI_Handler(void);
  30. void HardFault_Handler(void);
  31. void SVC_Handler(void);
  32. void PendSV_Handler(void);
  33. void SysTick_Handler(void);
  34. #ifdef __cplusplus
  35. }
  36. #endif
  37. #endif /* __STM32L0xx_IT_H */