adeos.h

来自「嵌入式系统C语言编程.rar是<嵌入式系统C语言编程>配套程序」· C头文件 代码 · 共 31 行

H
31
字号
/**********************************************************************
 *
 * Filename:    adeos.h
 * 
 * Description: The header file that users of the OS include.
 *
 * Notes:       
 *
 * 
 * Copyright (c) 1998 by Michael Barr.  This software is placed into
 * the public domain and may be used for any purpose.  However, this
 * notice must not be changed or removed and no warranty is either
 * expressed or implied by its publication or distribution.
 **********************************************************************/

#ifndef _ADEOS_H
#define _ADEOS_H


#include "bsp.h"
#include "task.h"
#include "sched.h"
#include "mutex.h"

#ifndef NULL
#define NULL  (void *) 0L
#endif


#endif /* _ADEOS_H */

⌨️ 快捷键说明

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