高级会员

- 积分
- 510
- 金钱
- 510
- 注册时间
- 2015-11-13
- 在线时间
- 131 小时
|
5金钱
//网络初始化
ETH_BSP_Config();
LwIP_Init();
TCP_Client_Init(TCP_LOCAL_PORT,TCP_Server_PORT,TCP_Server_IP);
FM1288_Init();
//内存池初始化
my_mem_init(SRAMIN);
my_mem_init(SRAMCCM);
exfuns_init();
f_mount(fs[0],"0:",1);
只要屏蔽掉上面任意一个初始化就没问题 如果上面全都编译 就会出现下面这些错误,是哪里出问题了吗?
Build target 'RECORDER'
compiling main.c...
linking...
..\OBJ\Recorder.axf: Error: L6406E: No space in execution regions with .ANY selector matching memp.o(.bss).
..\OBJ\Recorder.axf: Error: L6406E: No space in execution regions with .ANY selector matching ip_frag.o(.bss).
..\OBJ\Recorder.axf: Error: L6406E: No space in execution regions with .ANY selector matching startup_stm32f40_41xxx.o(STACK).
..\OBJ\Recorder.axf: Error: L6406E: No space in execution regions with .ANY selector matching sdio_sdcard.o(.bss).
..\OBJ\Recorder.axf: Error: L6406E: No space in execution regions with .ANY selector matching startup_stm32f40_41xxx.o(HEAP).
..\OBJ\Recorder.axf: Error: L6406E: No space in execution regions with .ANY selector matching usart.o(.bss).
..\OBJ\Recorder.axf: Error: L6406E: No space in execution regions with .ANY selector matching etharp.o(.bss).
..\OBJ\Recorder.axf: Error: L6406E: No space in execution regions with .ANY selector matching libspace.o(.bss).
..\OBJ\Recorder.axf: Error: L6406E: No space in execution regions with .ANY selector matching exfuns.o(.bss).
..\OBJ\Recorder.axf: Error: L6406E: No space in execution regions with .ANY selector matching tcp.o(.data).
..\OBJ\Recorder.axf: Error: L6406E: No space in execution regions with .ANY selector matching netconf.o(.bss).
..\OBJ\Recorder.axf: Error: L6406E: No space in execution regions with .ANY selector matching malloc.o(.data).
..\OBJ\Recorder.axf: Error: L6406E: No space in execution regions with .ANY selector matching main.o(.data).
..\OBJ\Recorder.axf: Error: L6406E: No space in execution regions with .ANY selector matching tcp_in.o(.data).
..\OBJ\Recorder.axf: Error: L6406E: No space in execution regions with .ANY selector matching exfuns.o(.data).
..\OBJ\Recorder.axf: Error: L6406E: No space in execution regions with .ANY selector matching system_stm32f4xx.o(.data).
..\OBJ\Recorder.axf: Error: L6406E: No space in execution regions with .ANY selector matching tcp_in.o(.bss).
..\OBJ\Recorder.axf: Error: L6406E: No space in execution regions with .ANY selector matching sdio_sdcard.o(.data).
..\OBJ\Recorder.axf: Error: L6406E: No space in execution regions with .ANY selector matching i2s.o(.data).
..\OBJ\Recorder.axf: Error: L6406E: No space in execution regions with .ANY selector matching stm32f4xx_rcc.o(.data).
..\OBJ\Recorder.axf: Error: L6406E: No space in execution regions with .ANY selector matching stm32f4x7_eth_1.o(.data).
..\OBJ\Recorder.axf: Error: L6406E: No space in execution regions with .ANY selector matching inet.o(.bss).
..\OBJ\Recorder.axf: Error: L6406E: No space in execution regions with .ANY selector matching mem.o(.data).
..\OBJ\Recorder.axf: Error: L6406E: No space in execution regions with .ANY selector matching ff.o(.bss).
..\OBJ\Recorder.axf: Error: L6406E: No space in execution regions with .ANY selector matching netconf.o(.data).
..\OBJ\Recorder.axf: Error: L6406E: No space in execution regions with .ANY selector matching ip.o(.data).
..\OBJ\Recorder.axf: Error: L6406E: No space in execution regions with .ANY selector matching netif.o(.data).
..\OBJ\Recorder.axf: Error: L6406E: No space in execution regions with .ANY selector matching usart.o(.data).
..\OBJ\Recorder.axf: Error: L6406E: No space in execution regions with .ANY selector matching ip_frag.o(.data).
..\OBJ\Recorder.axf: Error: L6406E: No space in execution regions with .ANY selector matching tcp_client.o(.data).
..\OBJ\Recorder.axf: Error: L6406E: No space in execution regions with .ANY selector matching delay.o(.data).
..\OBJ\Recorder.axf: Error: L6406E: No space in execution regions with .ANY selector matching dhcp.o(.data).
..\OBJ\Recorder.axf: Error: L6406E: No space in execution regions with .ANY selector matching raw.o(.data).
..\OBJ\Recorder.axf: Error: L6406E: No space in execution regions with .ANY selector matching udp.o(.data).
..\OBJ\Recorder.axf: Error: L6406E: No space in execution regions with .ANY selector matching diskio.o(.data).
..\OBJ\Recorder.axf: Error: L6406E: No space in execution regions with .ANY selector matching ff.o(.data).
..\OBJ\Recorder.axf: Error: L6406E: No space in execution regions with .ANY selector matching key.o(.data).
..\OBJ\Recorder.axf: Error: L6406E: No space in execution regions with .ANY selector matching etharp.o(.data).
..\OBJ\Recorder.axf: Error: L6407E: Sections of aggregate size 0x370c bytes could not fit into .ANY selector(s).
Not enough information to list image symbols.
Not enough information to list the image map.
Finished: 2 information, 0 warning and 39 error messages.
"..\OBJ\Recorder.axf" - 39 Error(s), 0 Warning(s).
Target not created.
Build Time Elapsed: 00:00:10
|
|