So you're a Noob? Post your questions here until you graduate! Don't be shy.

User avatar
By Oliver Buchmann
#67608 Hi community !
Thx for the answers gbafamily. :D

Okay now i can send 8 Pakets within a second. Great but the problem is i ned more, exactly i need 100. :shock:

now my questons are:

1. Is this posible to send 100 or more packets with 5 Byte within a second.
2. Is there any documentation who can I read what the maximal package rate is. (in real workspace)
3. Is it better to use a RTOS to send more packets in one second.

The for your attention !

Oliver
User avatar
By gbafamily1
#67616 I do not know about non OS or RTOS but it is possible to send more than 100 small packets/sec using ESP8266 Arduino. Capture packets using WireShark or tcpdump and look to make sure Nagle's algorithm is really disabled. In Arduino, setNoDelay(true) disables Nagle's algo. You should see 5 data bytes per packet. The function to disable Nagle's algo may have a different name with other SDKs. Search the SDK source code for "nodelay" or "nagle".