📄 root.h
字号:
/******************************************************************************
Copyright (c) 2006 by RockOS.
All rights reserved.
This software is supported by the Rock Software Workroom only.
Any bugs please contact the author with e-mail or QQ:
E-mail : baobaoba520@yahoo.com.cn
QQ : 59681888
*******************************************************************************
File name : root.h
Description : header file for root.c
:
:
Auther : sunxinqiu
History :
2006-03-15 first release.
******************************************************************************/
#ifndef __ROOT_H__
#define __ROOT_H__
#ifdef __cplusplus
extern "C" {
#endif
extern volatile U32 g_cpuIntDepth;
extern U32 g_OSRunning;
extern U32 g_CPUPerformanceBase;
extern volatile U32 g_IdleCount;
extern volatile U32 g_OSTickCount;
extern HTASK g_tickTaskId;
extern HTASK g_idleTaskId;
#if MAX_SHELL_CMD != 0
extern HTASK g_shellTaskId;
#endif
void root(void);
void OSOnTick(void);
void tTickEntry(void * p);
void tIdleEntry(void * p);
#ifdef __cplusplus
}
#endif
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -