⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 root.h

📁 介绍ROCK OS操作系统.一般用于汽车电子,类似OCVX.里面是个DEMO文档,内附说明.
💻 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 + -