-
Notifications
You must be signed in to change notification settings - Fork 7.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
esp_wifi_start
stops USB on ESP32-S3 (IDFGH-6599)
#8241
Comments
CircuitPython issue is here: adafruit/circuitpython#5662 |
esp_wifi_start
stops USB on ESP32-S3esp_wifi_start
stops USB on ESP32-S3 (IDFGH-6599)
I think this was fixed on Could you please try replacing esp-idf/components/esp_phy/Kconfig Line 109 in f3e0c8b
and give it a try? |
Thanks! That does get it past the import statement. I haven't actually tested the WiFi yet but USB continues to work. |
WiFi works too. 👍 We have a branch under adafruit/esp-idf that we'll patch until we get it on the 4.4 branch. |
Backported to v4.4 in commit bf523af. |
Environment
git describe --tags
to find it):release v4.4 commit 214d62b
xtensa-esp32-elf-gcc --version
to find it):xtensa-esp32s3-elf-gcc (crosstool-NG esp-2021r2) 8.4.0
Problem Description
In CircuitPython we initialize wifi dynamically when the user does
import wifi
. We initialize the USB before this happens. Now, runningesp_wifi_start
stops the USB.tio
shows the serial connection as disconnected.Expected Behavior
Wifi should start and USB should stay connected.
Actual Behavior
USB disconnects but code seems to continue to run.
Steps to reproduce
import wifi
.Code to reproduce this issue
import wifi
in CircuitPython.Debug Logs
No crash.
Other items if possible
firmware.elf.zip
sdkconfig.zip
The text was updated successfully, but these errors were encountered: