target.h
来自「ucos2 移植到44b0 上的源代码,支持中断嵌套,调试通过.」· C头文件 代码 · 共 32 行
H
32 行
#if !defined __TARGET_H
#define __TARGET_H
//Initialze interrupts.
void InitInterrupts(void);
//Initialize timer that is used OS.
void InitTimers(void);
/*** Called by ARMTargetStart() ***/
//Request the system timer.
//return value 1:success 0:fail
void RequestSystemTimer(void);
//Start system timer & enable the interrupt.
void InstallSystemTimer(void);
void ARMTargetInit(void);
void ARMTargetStart(void);
void Timer0_Exception(void);
void Exint0_Exception(void);
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?