1 /* 2 ************************************************************************************************ 3 * 钟常慰 4 * uC/OS-II实时控制内核 5 * 主要的包含文件 6 * 7 * 文 件: INCLUDES.C ucos包含文件 //应该是".H" 8 * 作 者: Jean J. Labrosse 9 * 中文注解: 钟常慰 zhongcw @ 126.com 译注版本:1.0 请尊重原版内容 10 ************************************************************************************************ 11 */ 12 13 14 #include <stdio.h> //包含<stdio.h>标准输入输出文件 15 #include <string.h> //包含<string.h>字符文件 16 #include <ctype.h> //包含<ctype.h>类型转换文件 17 #include <stdlib.h> //包含<stdlib.h>标准函数文件 18 #include <conio.h> //包含<conio.h>文件 19 #include <dos.h> //包含<dos.h>DOS文件 20 #include <setjmp.h> //包含<setjmp.h>文件 21 22 /****说明:以下几个文件需确定所在详细地址,可相对或绝对,否者,整个编译连接出错,切记***********/ 23 24 #include "\software\ucos-ii\ix86l\bc45\os_cpu.h" //包含"os_cpu.h"文件,自定义处理器内部(寄存器)内容 25 #include "os_cfg.h" //包含"os_cfg.h"ucos的构造文件 26 #include "\software\ucos-ii\source\ucos_ii.h" //包含"ucos_ii.h"内部所有ucos所有的函数内参设定 27 #include "\software\blocks\pc\bc45\pc.h" //包含"pc.h"程序输出在显示器荧幕显示文件 28 29 /*******************************************结束************************************************/