中级会员
 
- 积分
- 370
- 金钱
- 370
- 注册时间
- 2017-8-3
- 在线时间
- 38 小时
|
..\OBJ\Template.axf: Error: L6406E: No space in execution regions with .ANY selector matching malloc.o(.data).
把malloc.h函数里面的,内存管理设置小一点,如下:
#define MEM1_BLOCK_SIZE 32
#define MEM1_MAX_SIZE 40*1024
#define MEM1_ALLOC_TABLE_SIZE MEM1_MAX_SIZE/MEM1_BLOCK_SIZE
#define MEM2_BLOCK_SIZE 32
#define MEM2_MAX_SIZE 700 *1024
#define MEM2_ALLOC_TABLE_SIZE MEM2_MAX_SIZE/MEM2_BLOCK_SIZE
|
|