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