mc_pool_size.h

来自「MMI层OBJ不能完全编译」· C头文件 代码 · 共 46 行

H
46
字号
/**
 * @file  mc_pool_size.h
 *
 * Declarations of:
 * - the memory bank sizes and their watermark
 * - the SWE stack size
 * - the pool size needed (generally the sum of memory bank and stack sizes)
 *
 * @author  Candice Bazanegue
 * @version 0.1
 */

/*
 * History:
 *
 *  Date        Author          Modification
 *  -------------------------------------------------------------------
 *  07/08/2003  Candice Bazanegue   Extracted from rvf_pool_size.h
 *
 * (C) Copyright 2003 by Texas Instruments Incorporated, All Rights Reserved
 */

#ifndef __MC_POOL_SIZE_H_
#define __MC_POOL_SIZE_H_


/*
 * Values used in mmc_cfg.h
 */
//#define MC_STACK_SIZE (1024)
#define MC_STACK_SIZE (2048)//added for MMC in locosto

#define MC_MB1_SIZE (4096)  //old 2048

#define MC_POOL_SIZE  (MC_STACK_SIZE + MC_MB1_SIZE)

/**defines needed by other components to use MC api*/
//#define MC_STACK_SIZE MC_STACK_SIZE
//#define MC_MB1_SIZE   MC_MB1_SIZE
//#define MC_POOL_SIZE  MC_POOL_SIZE




#endif /*__MC_POOL_SIZE_H_*/

⌨️ 快捷键说明

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