stm32g0xx_it.h 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /**
  2. ******************************************************************************
  3. * @file stm32g0xx_it.h
  4. * @brief This file contains the headers of the interrupt handlers.
  5. ******************************************************************************
  6. * @attention
  7. *
  8. * <h2><center>&copy; Copyright (c) 2021 STMicroelectronics.
  9. * All rights reserved.</center></h2>
  10. *
  11. * This software component is licensed by ST under BSD 3-Clause license,
  12. * the "License"; You may not use this file except in compliance with the
  13. * License. You may obtain a copy of the License at:
  14. * opensource.org/licenses/BSD-3-Clause
  15. *
  16. ******************************************************************************
  17. */
  18. /* Define to prevent recursive inclusion -------------------------------------*/
  19. #ifndef __STM32G0xx_IT_H
  20. #define __STM32G0xx_IT_H
  21. #ifdef __cplusplus
  22. extern "C" {
  23. #endif
  24. /* Private includes ----------------------------------------------------------*/
  25. /* Exported types ------------------------------------------------------------*/
  26. /* Exported constants --------------------------------------------------------*/
  27. /* Exported macro ------------------------------------------------------------*/
  28. /* Exported functions prototypes ---------------------------------------------*/
  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. void EXTI4_15_IRQHandler(void);
  35. void DMA1_Channel1_IRQHandler(void);
  36. void DMA1_Channel2_3_IRQHandler(void);
  37. void TIM14_IRQHandler(void);
  38. void TIM16_IRQHandler(void);
  39. void TIM17_IRQHandler(void);
  40. void I2C1_IRQHandler(void);
  41. void SPI1_IRQHandler(void);
  42. void USART1_IRQHandler(void);
  43. #ifdef __cplusplus
  44. }
  45. #endif
  46. #endif /* __STM32G0xx_IT_H */
  47. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/