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

📄 malloc.h

📁 基于Cortex-M3核的ucosⅡ/ucos在STM32103上完整的移植代码和规范的工程模板
💻 H
字号:
/**************************************************************************
*                                                                         *
*   PROJECT     : ARM port for nucleus plus                               *
*                                                                         *
*   MODULE      : malloc.h                                                *
*                                                                         *
*   AUTHOR      : luo_huilian					 						  *
*                 URL  : http://www.bogodtech.com							  *
*                 EMAIL: armgcc@foxmail.com                               *
*                                                                         *
*   PROCESSOR   : STR710 (32 bit ARM7TDI RISC core )                      *
*                                                                         *
*   IDE         : SDT 2.51 & ADS 1.2                                      *
*                                                                         *
*   DESCRIPTION :                                                         *
*   This is the Framework module. Creates an operating infrastructure.    *
*                                                                         *
**************************************************************************/



#ifndef __MALLOC_H__
#define __MALLOC_H__


#ifdef __cplusplus
extern "C" {
#endif


/* ********************************************************************* */
/* Module configuration */


/* ********************************************************************* */
/* Interface macro & data definition */

/* ********************************************************************* */
/* Interface function definition */

void mem_init(void);

void *mem_malloc_sixteen(INT16U alloc_size);

void mem_free_sixteen(void *memory_ptr);

/* ********************************************************************* */

#ifdef __cplusplus
}
#endif

#endif /*__MALLOC_H__*/

⌨️ 快捷键说明

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