You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Send 2 udp packets to the feather (e.g. each with a size of 770 bytes)
Let the feather sleep until both packets are sent
Parse the udp packet and note that the size of the first packet is return correctly (770)
Read the udp packet into a buffer using the read function that has a size of the maximum unfragmented possible udp packet size (1460)
read function returns data (and read Bytes) of the second packet too (1460, should be 770)
There should be a limitation of bytes returned to a maximum of the current udp packet size.
The text was updated successfully, but these errors were encountered:
cike87
changed the title
udp.read(buffer, sizeof(buffer)) returns more data than in the current parsed packet
udp.read(buffer, sizeof(buffer)) returns more data than in the currently parsed packet
Oct 21, 2017
How to reproduce:
There should be a limitation of bytes returned to a maximum of the current udp packet size.
The text was updated successfully, but these errors were encountered: