This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

TCP packet filled with 'U' 1392 bytes long

Hi,

I'm trying the RL-ARM tcp/ip stack on a arm7 LPC2368 from ETT (futurlec).
I succeed setting up a TCP listen socket with the EasyWeb API.
But when I try to use the TCP stack from RL-ARM 4.12 I don't succeed.

When the controller goes online, it send one packet (ARP notify) and it is filled with 'U' (55) the whole frame/packet, 1392 bytes long.

If I try to setup a TCP connection from my controller to the PC.
several packets as described above appear.

Any idea?

Kind Regards.

Parents
  • I don't think TCPnet requires any heap (as specified in the startup) for 'basic' operation. The Keil example that I originally ran had it set for zero (and the current version of that demo still does).

    It does, however, require a memory pool to operate. This is specified in Net_Config.C, which will be included in your project. You should check it's value.

Reply
  • I don't think TCPnet requires any heap (as specified in the startup) for 'basic' operation. The Keil example that I originally ran had it set for zero (and the current version of that demo still does).

    It does, however, require a memory pool to operate. This is specified in Net_Config.C, which will be included in your project. You should check it's value.

Children