I am using TMS570LS3137 (DP84640 Phy). Trying to program UPD(unicast) using lwip to send 2MB of data. As of now i can send upto 63kb of data. How to send 2MB of data at a time. UDP support upto 63kb of transmission only, but in this link https://stackoverflow.com/questions/32512345/how-to-send-udp-packets-of-size-greater-than-64-kb#:~:text=So%20it's%20not%20possible%20to,it%20up%20into%20multiple%20datagrams. They have mentioned as "If you need to send larger messages, you need to break it up into multiple datagrams.", how to proceed with this?
How to send 2MB of data through UDP?
939 Views Asked by priya At
1
There are 1 best solutions below
Related Questions in UDP
- Discussion on using golang to implement UDP client timeout retransmission
- What is the correct way to setup and use the Ethernet library in Arduino in order to send and receive UDP broadcast messages between LAN devices?
- Multicast packets not received on windows
- Microcontroller hangs with LWIP UDP
- UDP socket client not able to receive data
- "Parameter is not valid" exception when using Image.FromStream() - UDP Video live stream
- k3s change requested UDP port assignment
- Why does the python client socket receiving a reply but still throw the exception in some threadings?
- Gnuradio "double free or corruption (!prev)" error
- Why we need wraparound in UPD checksum algorithm?
- Simple Java UDP server/client-program works on local machine but not over either LAN (different machines) or internet
- Docker bridge does not transmit from tcpreplay IPv6/UDP/GTP traffic
- trying to send TCP packet and recieve it back and count time in client+server app
- recvmsg returns EAGAIN after select reports file descriptor is ready
- Receiving UDP broadcast on Android
Related Questions in ETHERNET
- How to use WiFi and Ethernet at same time?
- What is the correct way to setup and use the Ethernet library in Arduino in order to send and receive UDP broadcast messages between LAN devices?
- Arduino IDE: The IP address was not printing in serial monitor
- I don't know where to start with ethernet communication with Automation Direct P1AM-200 ETH module communication
- How do I know when the dsa_loop and dsa_loop_bdinfo linux kernel modules are working?
- How can I upload data from Arduino uno ethernet shield to mongodb Atlas
- Access flask server hosted on Raspberry Pi on Android phone connected via ethernet
- Python code for read/write binary file and convert it to .pcap
- Should my PC recognize my Arty A7-100T FPGA?
- How to get to send the current network's server using nodejs
- How can I get a Python socket object to read a continuous stream of raw TCP/IP data over ethernet connection?
- Need CAPL script to find fin or RST messages over TCP connection - DOIP
- Socket implementation with micropython and WIZNET5500
- UDSonIP vehicle announcement
- Packet Sniffing on Mirrored Port - Missing Packets when UDP Message > 50kb (Python, Scapy)
Related Questions in DATAGRAM
- How to change buffer size for lua socket?
- Polling a UnixDatagram for new messages in Rust: how to handle WouldBlock error?
- Find out size of UDP datagram BEFORE reading it into buffer?
- How to get FD on datagram socket?
- I'm not quite sure which side is the cause that my android app can't receive a UDP "message" from a Golang server
- Java DatagramSocket - client receives only first character
- How to Resolve High Datagram Received Address Errors on Windows with Intel UDP Unicast?
- React Native - how to play a MPEG-TS video reading from UDP stream
- How segment properly a QByteArray data frome the readDatagram() function?
- Signal interrupt sendto/recvfrom on datagram socket
- DatagramSocket.recieve() never recieves UDP packet
- Thread Pools with many socket connections InputStream read method
- How to set timeout function for RawDatagramSocket in Dart
- How can I wait for socket events in Javascript?
- How to parse UDP datagram to a Dart Class
Related Questions in LWIP
- Microcontroller hangs with LWIP UDP
- LWIP with STM32 H7, 15 first ethernet commands are exchanges with success and processed. 16th command is queued in pbuf_chain: why
- STM32 Server (lwip) response to Javascript (fetch-API)
- Sending Data over Ethernet UDP via lwIP Problem
- Socket implementation with micropython and WIZNET5500
- Is it possible to implement dynamic webpage using RAW API of LwIP (Light weight IP).?
- pbuf Reference Error in Async Web Server on ESP32
- ESP32 in WIFI STA mode: how to intercept incoming ARPs? not just IP packets
- errors installing ascii-video globally, problems with lwip
- Freertos + lwip+tinyUSB
- TCP cannot connect when routed, Raspberry Pi Pico + lwIP + ENC28J60
- LWIP STM32H7 Raw TCP connection closes after receiving a few bytes
- Converting u8_t to JSON and manipulate data, in C
- STM32 LwIP Ethernet Only Works in Debug Mode
- Pico W HTTP webserver lwip ssi tags not being recognized by make fsdata script
Related Questions in TMS570
- Why do I get 0x5 as a response when sending SPI command cmd0?
- How to send 2MB of data through UDP?
- Running a C application from a different address than 0
- Is there any way to transfer data in C via RX/TX protocol?
- arm-linux-gcc:undefined reference to error
- Armclang with the TMS570
- FreeRTOS Static for safety application
- Temporarily disable interrupts on ARM
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Since UDP uses IP, you're limited to the maximum IP packet size of 64 KiB generally, even with fragmentation. So, the hard limit for any UDP payload is 65,535 - 28 = 65,507 bytes.
I need to either