headers.h

来自「在纯DOS下运行的TurboC3_ucos2_ucgui bug改进版本」· C头文件 代码 · 共 37 行

H
37
字号
/*
*********************************************************************************************************
* 文件: Headers.h
* 描述: 头文件, 仅所有非 uC/OS 系统函数包含, 减少对 OS 核的编译次数.
* 编写: 深思 (001-12345@sohu.com).
*********************************************************************************************************
*/
#define TASK_ONE_STACKSIZE   (8*1024)
#define TASK_TWO_STACKSIZE   (8*1024)
#define TASK_THR_STACKSIZE   (1024)


#ifndef  Headers_H
#define  Headers_H

#include    "os_cpu.h"
#include    "os_cfg.h"

#ifndef     DECLARE_SEM
#include    "ucos_ii.h"
#include    "LPrivate.h"
#define     DECLARE_SEM
#endif


#include    "defines.h"
#include    "variable.h"
#include    "function.h"


#endif
/*
********************************************************************************************************
* End.
********************************************************************************************************
*/

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?