sysmain.h

来自「日本很有名的一个嵌入式RTOS」· C头文件 代码 · 共 46 行

H
46
字号
/* *---------------------------------------------------------------------- *    T-Kernel * *    Copyright (C) 2004-2006 by Ken Sakamura. All rights reserved. *    T-Kernel is distributed under the T-License. *---------------------------------------------------------------------- * *    Version:   1.02.01 *    Released by T-Engine Forum(http://www.t-engine.org) at 2006/1/10. * *---------------------------------------------------------------------- *//* *	sysmain.h (sysmain) *	Kernel Main */#ifndef _SYSMAIN_#define _SYSMAIN_#include <basic.h>#include <tk/tkernel.h>#include <tm/tmonitor.h>/* Boot message */#define BOOT_MESSAGE \	"\n" \	"T-Kernel Version 1.02.01\n" \	"\n\0"/* Display the progress of start processing (sysinit) *	Display the value specified by 'n' on display or LED. *	Some platform may not support this function. */IMPORT void DispProgress( W n );/* * User main */IMPORT INT usermain( void );#endif /* _SYSMAIN_ */

⌨️ 快捷键说明

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