📄 includes.h
字号:
/*****************************************************************************
|*
|* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -