stm32g0xx_it.h 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. #ifdef __cplusplus
  35. }
  36. #endif
  37. #endif /* __STM32G0xx_IT_H */
  38. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/