stm32g0xx_it.h 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /* USER CODE BEGIN Header */
  2. /**
  3. ******************************************************************************
  4. * @file GPIO/GPIO_IOToggle/Inc/stm32g0xx_it.h
  5. * @author MCD Application Team
  6. * @brief This file contains the headers of the interrupt handlers.
  7. ******************************************************************************
  8. * @attention
  9. *
  10. * Copyright (c) 2019-2020 STMicroelectronics.
  11. * All rights reserved.
  12. *
  13. * This software is licensed under terms that can be found in the LICENSE file
  14. * in the root directory of this software component.
  15. * If no LICENSE file comes with this software, it is provided AS-IS.
  16. *
  17. ******************************************************************************
  18. */
  19. /* USER CODE END Header */
  20. /* Define to prevent recursive inclusion -------------------------------------*/
  21. #ifndef __STM32G0xx_IT_H
  22. #define __STM32G0xx_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 SVC_Handler(void);
  42. void PendSV_Handler(void);
  43. void SysTick_Handler(void);
  44. /* USER CODE BEGIN EFP */
  45. /* USER CODE END EFP */
  46. #ifdef __cplusplus
  47. }
  48. #endif
  49. #endif /* __STM32G0xx_IT_H */