• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* USER CODE BEGIN Header */
2 /**
3   ******************************************************************************
4   * @file    stm32f4xx_it.h
5   * @brief   This file contains the headers of the interrupt handlers.
6   ******************************************************************************
7   * @attention
8   *
9   * Copyright (c) 2022 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 __STM32F4xx_IT_H
22 #define __STM32F4xx_IT_H
23 
24 #ifdef __cplusplus
25  extern "C" {
26 #endif
27 
28 void NMI_Handler(void);
29 void HardFault_Handler(void);
30 void MemManage_Handler(void);
31 void BusFault_Handler(void);
32 void UsageFault_Handler(void);
33 void SVC_Handler(void);
34 void DebugMon_Handler(void);
35 void PendSV_Handler(void);
36 void SysTick_Handler(void);
37 void OTG_FS_IRQHandler(void);
38 
39 #ifdef __cplusplus
40 }
41 #endif
42 
43 #endif
44