includes.h

来自「ucos porting source for 8052」· C头文件 代码 · 共 38 行

H
38
字号

/***********************************************************************************************************\
*                                               uC/OS-II                                                    *
*                                        The Real-Time Kernel                                               *
*                                                                                                           *
*                           (c) Copyright 1999, Jean J. Labrosse, Weston, FL                                *
*                                          All Rights Reserved                                              *
*                                                                                                           *
*                                     Intel 80C52 Master Include File                                       *
*                                                                                                           *
* File : INCLUDES.H                                                                                         *
* By   : Jean J. Labrosse                                                                                   *
\***********************************************************************************************************/

#ifndef __INC__
 #define __INC__
/***********************************************************************************************************\
*                                         Standard Header Files                                             *
\***********************************************************************************************************/
 
 #include  <stdio.h>
 #include  <string.h>
 #include  <stdlib.h>
 #include  <io320.h>

 #include  <special.h>
/***********************************************************************************************************\
*                                           FILES TO INCLUDE                                                *
\***********************************************************************************************************/

 #define  OS_ISR_PROTO_EXT     /* Function prototypes for OSCtxSw() and OSTickISR() are found in uCOS_II.H */

 #include "OS_CPU.H"           /* Processor specific header (ported to the 8052 family of processors)      */
 #include "OS_CFG.H"           /* OS configuration header file                                             */
 #include "uCOS_II.H"          /* uC/OS-II header file (ported to the 8052 family of processors)           */
/***********************************************************************************************************/
#endif

⌨️ 快捷键说明

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