mirror of
https://github.com/xiaotianbc/AT32_BSPV1_Clion_Template.git
synced 2026-05-21 01:12:16 +00:00
37 lines
1.2 KiB
C
37 lines
1.2 KiB
C
/**
|
|
******************************************************************************
|
|
* File : Templates/at32f4xx_it.h
|
|
* Version: V1.3.0
|
|
* Date : 2021-03-18
|
|
* Brief : Main Interrupt Service Routines.
|
|
* This file provides template for all exceptions handler and peripherals
|
|
* interrupt service routine.
|
|
******************************************************************************
|
|
*/
|
|
|
|
|
|
/* Define to prevent recursive inclusion -------------------------------------*/
|
|
#ifndef __AT32F4XX_IT_H
|
|
#define __AT32F4XX_IT_H
|
|
|
|
/* Includes ------------------------------------------------------------------*/
|
|
#include "at32f4xx.h"
|
|
|
|
/* Exported types ------------------------------------------------------------*/
|
|
/* Exported constants --------------------------------------------------------*/
|
|
/* Exported macro ------------------------------------------------------------*/
|
|
/* Exported functions ------------------------------------------------------- */
|
|
|
|
void NMI_Handler(void);
|
|
void HardFault_Handler(void);
|
|
void MemManage_Handler(void);
|
|
void BusFault_Handler(void);
|
|
void UsageFault_Handler(void);
|
|
void SVC_Handler(void);
|
|
void DebugMon_Handler(void);
|
|
void PendSV_Handler(void);
|
|
void SysTick_Handler(void);
|
|
|
|
#endif /* __AT32F4XX_IT_H */
|
|
|