| [1] | 1 | /* USER CODE BEGIN Header */
|
|---|
| 2 | /**
|
|---|
| 3 | ******************************************************************************
|
|---|
| 4 | * @file stm32g0xx_it.h
|
|---|
| 5 | * @brief This file contains the headers of the interrupt handlers.
|
|---|
| 6 | ******************************************************************************
|
|---|
| 7 | * @attention
|
|---|
| 8 | *
|
|---|
| 9 | * <h2><center>© Copyright (c) 2020 STMicroelectronics.
|
|---|
| 10 | * All rights reserved.</center></h2>
|
|---|
| 11 | *
|
|---|
| 12 | * This software component is licensed by ST under BSD 3-Clause license,
|
|---|
| 13 | * the "License"; You may not use this file except in compliance with the
|
|---|
| 14 | * License. You may obtain a copy of the License at:
|
|---|
| 15 | * opensource.org/licenses/BSD-3-Clause
|
|---|
| 16 | *
|
|---|
| 17 | ******************************************************************************
|
|---|
| 18 | */
|
|---|
| 19 | /* USER CODE END Header */
|
|---|
| 20 |
|
|---|
| 21 | /* Define to prevent recursive inclusion -------------------------------------*/
|
|---|
| 22 | #ifndef __STM32G0xx_IT_H
|
|---|
| 23 | #define __STM32G0xx_IT_H
|
|---|
| 24 |
|
|---|
| 25 | #ifdef __cplusplus
|
|---|
| 26 | extern "C" {
|
|---|
| 27 | #endif
|
|---|
| 28 |
|
|---|
| 29 | /* Private includes ----------------------------------------------------------*/
|
|---|
| 30 | /* USER CODE BEGIN Includes */
|
|---|
| 31 |
|
|---|
| 32 | /* USER CODE END Includes */
|
|---|
| 33 |
|
|---|
| 34 | /* Exported types ------------------------------------------------------------*/
|
|---|
| 35 | /* USER CODE BEGIN ET */
|
|---|
| 36 |
|
|---|
| 37 | /* USER CODE END ET */
|
|---|
| 38 |
|
|---|
| 39 | /* Exported constants --------------------------------------------------------*/
|
|---|
| 40 | /* USER CODE BEGIN EC */
|
|---|
| 41 |
|
|---|
| 42 | /* USER CODE END EC */
|
|---|
| 43 |
|
|---|
| 44 | /* Exported macro ------------------------------------------------------------*/
|
|---|
| 45 | /* USER CODE BEGIN EM */
|
|---|
| 46 |
|
|---|
| 47 | /* USER CODE END EM */
|
|---|
| 48 |
|
|---|
| 49 | /* Exported functions prototypes ---------------------------------------------*/
|
|---|
| 50 | void NMI_Handler(void);
|
|---|
| 51 | void HardFault_Handler(void);
|
|---|
| 52 | void SVC_Handler(void);
|
|---|
| 53 | void PendSV_Handler(void);
|
|---|
| 54 | void SysTick_Handler(void);
|
|---|
| 55 | void DMA1_Channel1_IRQHandler(void);
|
|---|
| 56 | void ADC1_COMP_IRQHandler(void);
|
|---|
| 57 | void TIM6_DAC_LPTIM1_IRQHandler(void);
|
|---|
| 58 | void TIM7_LPTIM2_IRQHandler(void);
|
|---|
| 59 | void TIM14_IRQHandler(void);
|
|---|
| 60 | void TIM15_IRQHandler(void);
|
|---|
| 61 | void TIM16_IRQHandler(void);
|
|---|
| 62 | void TIM17_IRQHandler(void);
|
|---|
| 63 | void USART1_IRQHandler(void);
|
|---|
| 64 | /* USER CODE BEGIN EFP */
|
|---|
| 65 |
|
|---|
| 66 | /* USER CODE END EFP */
|
|---|
| 67 |
|
|---|
| 68 | #ifdef __cplusplus
|
|---|
| 69 | }
|
|---|
| 70 | #endif
|
|---|
| 71 |
|
|---|
| 72 | #endif /* __STM32G0xx_IT_H */
|
|---|