Replies: 4 comments 14 replies
-
Did you try this?
|
Beta Was this translation helpful? Give feedback.
2 replies
-
@EricNRS, I have tried the same test and I get no errors or locked console. I tested on a esp32s3_devkitm. Is there anything else that could be causing this? |
Beta Was this translation helpful? Give feedback.
9 replies
-
@EricNRS, Please, submit a PR so we can take a look. |
Beta Was this translation helpful? Give feedback.
1 reply
-
@EricNRS, btw, are you using USB interface or UART? I only tested UART interface. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am seeing WiFi failures on ESP32-S3 hardware. If I build the WiFi example for the xiao_esp32s3 and then flood the WiFi network.
west build --pristine -b xiao_esp32s3 samples/net/wifi
Connect to WiFi:
wifi connect "ESSID" PSK
If I then do a flood ping, the system sometimes stops responding after a while and the serial console is locked up. However, if a background task is added that blinks an LED, then that continues, so the processor has not hit an exception.
Often after doing the ping flood, an error will be logged from
esp32_wifi_send()
with error code 257 (ESP_ERR_NO_MEM). Networking will often fail at this point and require a reset to recover. The serial console will sometimes lock up at this point as well. I added a workqueue item to toggle a LED and that continues to work even though the serial console and WiFi are not responding.If you are not seeing the issue, try to increase the buffer count by editing
zephyr/samples/net/wifi/boards/xiao_esp32s3.conf
and adding:Any suggestions on how to debug this or assitance in resolving this would be greatly appreciated!
Beta Was this translation helpful? Give feedback.
All reactions