source: trunk/fw_g473rct/Core/Inc/stm32g4xx_it.h

Last change on this file was 38, checked in by f.jahn, 7 weeks ago
File size: 2.3 KB
Line 
1/* USER CODE BEGIN Header */
2/**
3 ******************************************************************************
4 * @file stm32g4xx_it.h
5 * @brief This file contains the headers of the interrupt handlers.
6 ******************************************************************************
7 * @attention
8 *
9 * Copyright (c) 2025 STMicroelectronics.
10 * All rights reserved.
11 *
12 * This software is licensed under terms that can be found in the LICENSE file
13 * in the root directory of this software component.
14 * If no LICENSE file comes with this software, it is provided AS-IS.
15 *
16 ******************************************************************************
17 */
18/* USER CODE END Header */
19
20/* Define to prevent recursive inclusion -------------------------------------*/
21#ifndef __STM32G4xx_IT_H
22#define __STM32G4xx_IT_H
23
24#ifdef __cplusplus
25extern "C" {
26#endif
27
28/* Private includes ----------------------------------------------------------*/
29/* USER CODE BEGIN Includes */
30
31/* USER CODE END Includes */
32
33/* Exported types ------------------------------------------------------------*/
34/* USER CODE BEGIN ET */
35
36/* USER CODE END ET */
37
38/* Exported constants --------------------------------------------------------*/
39/* USER CODE BEGIN EC */
40
41/* USER CODE END EC */
42
43/* Exported macro ------------------------------------------------------------*/
44/* USER CODE BEGIN EM */
45
46/* USER CODE END EM */
47
48/* Exported functions prototypes ---------------------------------------------*/
49void NMI_Handler(void);
50void HardFault_Handler(void);
51void MemManage_Handler(void);
52void BusFault_Handler(void);
53void UsageFault_Handler(void);
54void SVC_Handler(void);
55void DebugMon_Handler(void);
56void PendSV_Handler(void);
57void SysTick_Handler(void);
58void EXTI2_IRQHandler(void);
59void DMA1_Channel1_IRQHandler(void);
60void DMA1_Channel2_IRQHandler(void);
61void DMA1_Channel3_IRQHandler(void);
62void DMA1_Channel4_IRQHandler(void);
63void DMA1_Channel5_IRQHandler(void);
64void DMA1_Channel6_IRQHandler(void);
65void DMA1_Channel7_IRQHandler(void);
66void EXTI9_5_IRQHandler(void);
67void USART1_IRQHandler(void);
68void USART2_IRQHandler(void);
69/* USER CODE BEGIN EFP */
70
71/* USER CODE END EFP */
72
73#ifdef __cplusplus
74}
75#endif
76
77#endif /* __STM32G4xx_IT_H */
Note: See TracBrowser for help on using the repository browser.