?? mc_pool_size.h
字號:
/**
* @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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -