intc.h
来自「dm270 source code」· C头文件 代码 · 共 34 行
H
34 行
/*
DM270 ARM Evaluation Software
(c)Texas Instruments 2003
*/
/** \defgroup INTC_USER Interrupt Controller User APIs*/
/*@{*/
/** \file intc.h
\brief Interrupt Controller User APIs
*/
#ifndef __INTC_H__
#define __INTC_H__
#include <system/intc270.h>
/**
\brief Interrupt Service Routine (ISR) prototype typedef
*/
typedef void (*INTC_ISR)();
STATUS INTCInit() ;
STATUS INTCAttachISR( INT_ID intID, INTC_ISR isr) ;
STATUS INTCDetachISR( INT_ID intID ) ;
#endif /* __INTC_H__ */
/*@}*/
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?