Open cwerner77 opened 5 years ago
I could reproduce this problem on a WeMos D1 board using ESP8266WiFi instead of WiFiNINA.
There are also other reports on similar problems with esp32-based hardware (https://esp32.com/viewtopic.php?t=8948). I think this issue might be related to espressif's core implementation and not to WiFiNINA.
However, any hints are welcome!
Hi folks,
I have observed an issue when sending UDP broadcast messages with my Arduino MKR WiFi 1010.
When running the Arduino as access point (AP mode, using
WiFi.beginAP()
) more than 80% of my packets are dropped (checked with Wireshark).When connecting the Arduino to an existing access point (station mode, using
WiFi.begin()
) everything works as expected with rest of my code unchanged.If I am using IP unicast instead of broadcast, both variants work as expected.
That's why I think that I hit a bug in WiFiNINA related to IP broadcast in AP mode.
Arduino version is 1.8.9, WiFi firmware version is 1.2.1.
Here is my example sketch: