stm32g0xx_it.h 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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 ADC1_IRQHandler(void);
  34. //void TIM1_BRK_UP_TRG_COM_IRQHandler(void);
  35. #ifdef __cplusplus
  36. }
  37. #endif
  38. #endif /* __STM32G0xx_IT_H */
  39. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/