Hi
I am using the W5500 in a new design and it is working well. To send data over TCP I currently:
Open a TCP socket
Wait for the connection to come active
Write to the TX buffer
Issue a SEND command
This works fine but I would like to change the order to:
Open a TCP socket
Write to the TX buffer
Wait for the connection to come active
Issue a SEND command
When I tried this it did not work. Is there a way of writing to the TX buffer before the TCP connection is active?
Bill