halt.h
来自「ADS开发环境下移植的ucos实时操作系统」· C头文件 代码 · 共 66 行
H
66 行
/**************************************************************************
* *
* PROJECT : ARM port for UCOS-II *
* *
* MODULE : HALT.h *
* *
* AUTHOR : Michael Anburaj *
* URL : http://geocities.com/michaelanburaj/ *
* EMAIL: michaelanburaj@hotmail.com *
* *
* PROCESSOR : ARM (32 bit ARM7's, ARM9's) *
* *
* TOOL-CHAIN : Any *
* *
* DESCRIPTION : *
* This is the ARM mode halt handlers interface file. *
* *
**************************************************************************/
#ifndef __HALT_H__
#define __HALT_H__
#ifdef __cplusplus
extern "C" {
#endif
/* ********************************************************************* */
/* Module configuration */
/* ********************************************************************* */
/* Interface macro & data definition */
/* ********************************************************************* */
/* Interface function definition */
/*
*********************************************************************************************
* HALT_vInitARMModeHandlers
*
* Description: This routine hooks all the Halt exception handlers. Exceptions which are to
* be handled by the application can be overwritten with the new handler at the
* appropriate Software hook location.
*
* Arguments : none.
*
* Return : none.
*
* Note(s) : This code should always be compiled in ARM mode.
*********************************************************************************************
*/
void HALT_vInitARMModeHandlers(void);
/* ********************************************************************* */
#ifdef __cplusplus
}
#endif
#endif /*__HALT_H__*/
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?