arm_core.h

来自「RockOS是在ARM上开发的」· C头文件 代码 · 共 40 行

H
40
字号
/******************************************************************************
   Copyright (c) 2006 by RockOS.
   All rights reserved.

   This software is supported by Rock Software Workroom.

   Any bugs please contact the author with e-mail or QQ:
     E-mail : baobaoba520@yahoo.com.cn
         QQ : 59681888
*******************************************************************************
File name   : arm_core.h
Description : the bsp header file for RockOS.
            : 
Auther      : sunxinqiu
History     :
  2006-3-15   first release.
******************************************************************************/

#ifndef __ARM_CORE_H__
#define __ARM_CORE_H__

#ifdef __cplusplus
extern "C"  {
#endif

void * getMemStartAddr(void);
void * getMemEndAddr(void);
void * taskStackInit(void * pStack, unsigned int size, void * pEntry, void * pData);

void OSRunTask(void);
void OSSwTask(void);
void OSIntSwTask(void);

#ifdef __cplusplus
}
#endif

#endif

⌨️ 快捷键说明

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