all.h

来自「一个简单的小型操作系统」· C头文件 代码 · 共 50 行

H
50
字号
 
/*****************************************************************************
 * Simple Little Operating System - SLOS
 *****************************************************************************/

/*****************************************************************************
 *
 * Module      : all.h
 * Description : brings in all the specific core headers
 * OS          : SLOS 0.09
 * Platform    : e7t
 * History     :
 *
 * 16th November 2001 Andrew N. Sloss
 * - started creating 
 *
 *****************************************************************************/

/*****************************************************************************
 * IMPORT
 *****************************************************************************/
 
#ifndef _CORE_ALL

#define _CORE_ALL 1

#include "../headers/api_types.h"
#include "cli_com.h"
#include "cli_readline.h"
#include "../devices/ddf_io.h"
#include <assert.h>
#include <time.h>

/* Bring in a header for the first task .......... */

#include "../apps/task1_start.h"

/* Bring in cli header ........................... */

#include "cli_com.h"

/* Bring in all the headers for the platform ..... */

#include "../e7t/headers/all.h"
#include "../headers/api_device.h"
#include "../headers/api_lldebug.h"

#endif

⌨️ 快捷键说明

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