#ifndef __SOC_INTR_H
|
#define __SOC_INTR_H
|
|
#ifdef __cplusplus
|
extern "C" {
|
#endif
|
|
/* Includes ------------------------------------------------------------------*/
|
|
|
/* 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);
|
|
#ifdef __cplusplus
|
}
|
#endif
|
|
#endif
|