⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 headers.h

📁 Turbo C 3.0 + UCOS2 + UCGUI PC学习版本
💻 H
字号:
/*
*********************************************************************************************************
* 文件: 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -