您需要使用TCPIpCuff.EXE实用工具来更改套接字配置和RAM使用。它可以手工完成,但它不是自动计算的东西。这可能给你一个簇。例如,每个区域的RAM大小是该区域中每个套接字的Tx+Rx+siZeof(TCP)的总和。最好使用TCPIPCONFIG!
以上来自于百度翻译
以下为原文
You need to use the TCPIPconfig.exe utility to change the Socket config and ram usage.
It can be done by hand but it is not an automatically calculated thing. this might give you a clue.
e.g.
#define TCP_ETH_RAM_SIZE ((1600ul + 48ul)*2) // (Tx+RX+48)*nSockets
#define TCP_PIC_RAM_SIZE ((200ul + 48ul)*2 + (400ul + 48ul)*1 )
The ram size of each area is total of Tx+Rx+sizeof(TCP) for each socket in that area. Best to use TCPIPconfig!
您需要使用TCPIpCuff.EXE实用工具来更改套接字配置和RAM使用。它可以手工完成,但它不是自动计算的东西。这可能给你一个簇。例如,每个区域的RAM大小是该区域中每个套接字的Tx+Rx+siZeof(TCP)的总和。最好使用TCPIPCONFIG!
以上来自于百度翻译
以下为原文
You need to use the TCPIPconfig.exe utility to change the Socket config and ram usage.
It can be done by hand but it is not an automatically calculated thing. this might give you a clue.
e.g.
#define TCP_ETH_RAM_SIZE ((1600ul + 48ul)*2) // (Tx+RX+48)*nSockets
#define TCP_PIC_RAM_SIZE ((200ul + 48ul)*2 + (400ul + 48ul)*1 )
The ram size of each area is total of Tx+Rx+sizeof(TCP) for each socket in that area. Best to use TCPIPconfig!
举报