59 lines
1.5 KiB
C
59 lines
1.5 KiB
C
/*!
|
|
* \file system_it_xinc.h
|
|
*
|
|
* \brief The header of system_it_xinc.c
|
|
*
|
|
* \copyright Revised BSD License, see section \ref LICENSE.
|
|
*
|
|
* \code
|
|
*
|
|
* _ __ _ ________ _
|
|
* | |/ /(_)___ / ____/ /_ (_)___
|
|
* | // / __ \/ / / __ \/ / __ \
|
|
* / |/ / / / / /___/ / / / / /_/ /
|
|
* /_/|_/_/_/ /_/\____/_/ /_/_/ .___/
|
|
* /_/
|
|
* (C) 2022-2025 XinChip
|
|
*
|
|
* \endcode
|
|
*
|
|
* \author ( XinChip ) Alex-J
|
|
*
|
|
* \author ( XinChip )
|
|
*/
|
|
|
|
/* Define to prevent recursive inclusion -------------------------------------*/
|
|
#ifndef __SYSTEM_IT_XINC_H__
|
|
#define __SYSTEM_IT_XINC_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/*-----------------------------------------------------------------------------------
|
|
INCLUDE HEADE FILES
|
|
------------------------------------------------------------------------------------*/
|
|
#include "xc6xxx.h"
|
|
|
|
/*------------------------------------------------------------------------------------
|
|
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 HardFault_Handler_c(unsigned int * HardFault_args);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __SYSTEM_IT_XINC_H__ */
|
|
|