Network library settings

Hi all,

I have some questions and I would be grateful if you could help me. As you know, by adding a Network library, the library without open source needs good documentations. The documentation @ Keil and ARM websites is appropriate for many uses but for networks needs to be completed.

My questions:

1) In the Net_Config_ETH_0.h file, what is the OS Resource Settings?

2)In Net_Config.c, what is the OS Resource Settings? What does define its size

To change the default OS resource settings for the Network Core, use Core Thread Stack Size. The default value is 1024 bytes

3) In Net_Config.c, what is the Memory Pool Size?

The Memory Pool Size specifies the amount of RAM in bytes allocated for the memory pool. The buffers for the network packets are allocated from this memory pool. Usually, the default value of 12000 bytes is sufficient.

Does it get this memory from RTOS Global Dynamic memory?

4) How can I define the maximum data size and packet numbers per second if I use TCP or UDP protocol? I am using STM32F10x series with 72 MHz and a Phi with 50 MHz resource clock with RMII protocol.

5) How much time does a packet need to be transmitted after using netUDP_Send or netTCP_Send?

6) Is there any limitation for the Network on tick number or Kernel frequency of RTOS?

7) If I send the 30Bytes UDP packet each 100us, how the network library handle it? It sends them very fast or accumulate them in in queue form?

 

Thank you.