includes.h
来自「uCos-II 在多种处理器上移植的源代码」· C头文件 代码 · 共 40 行
H
40 行
/*****************************************************************************
|*
|* Copyright (c) 2001 TASKING, Inc.
|*
|* Description:
|*
|* Header file for uC/OS
|*
****************************************************************************/
#ifndef _INCLUDES_H_
#define _INCLUDES_H_
/*
***************************************************************
* INCLUDES.H
***************************************************************
*/
#include <stdio.h>
#include <string.h>
#include <ctype.h>
#include <stdlib.h>
#if (_MODEL == 'r')
# include "os_cpu.h"
#else
# error Only reentrant memory model is supported
#endif
/* === Include Application specific constants and definitions === */
#include "os_cfg.h"
/* === Include Target-Independent constants and definitions === */
#include "UCOS_II.h"
#endif /* _INCLUDES_H_ */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?