uhal.h
来自「在S3C44b0上移植ucos并实现哲学家就餐问题的演示」· C头文件 代码 · 共 32 行
H
32 行
//**************************************************************************
//Name: port.h
//**************************************************************************
#ifndef __UHAL_H__
#define __UHAL_H__
//--------------------------------------------------------------------------
#ifdef __cplusplus
extern "C" {
#endif
//Initialze interrupts.
void uHALr_InitInterrupts(void);
//Initialize timer that is used OS.
void uHALr_InitTimers(void);
//Start system timer & enable the interrupt.
void uHALr_InstallSystemTimer(void);
//board main init
void ARMTargetInit(void);
#ifdef __cplusplus
}
#endif
//--------------------------------------------------------------------------
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?