Tool/software:
hi,
I am using tm4c1294ncpdt for UDP, my requirement is have to send 400000 bytes data, how can i send data, if i send data chunk(1024 bytes) how can I get acknowledgment. which is protocol better to send large data i mean TCP/UDP.
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Tool/software:
hi,
I am using tm4c1294ncpdt for UDP, my requirement is have to send 400000 bytes data, how can i send data, if i send data chunk(1024 bytes) how can I get acknowledgment. which is protocol better to send large data i mean TCP/UDP.
Hi,
This app note has some software collaterals including examples for both UDP and TCP. TM4C129x Ethernet Applications for Lightweight IP (lwIP)
Bear in mind that TCP is a connection oriented transport protocol which focuses on the reliability and integrity of the data transmission while the UDP is connection-less but is faster but does not guarantee reliable delivery of the data. You will need to decide which protocol is best suited for your application. You will not get any acknowledgement using UDP.