ESP32-S3 WROOM 1 - WLAN.active(True) Hangs

All ESP32 boards running MicroPython.
Target audience: MicroPython users with an ESP32 board.
Post Reply
willcharlton
Posts: 2
Joined: Fri Sep 05, 2014 9:19 pm

ESP32-S3 WROOM 1 - WLAN.active(True) Hangs

Post by willcharlton » Sat Apr 16, 2022 3:18 pm

Also posted on stackoverflow.

When I try to enable wifi on this board, the

Code: Select all

.active(True)
method hangs forever.

Code: Select all

.venv/bin/python -m serial.tools.miniterm /dev/tty.usbmodem1234561 115200
--- Miniterm on /dev/tty.usbmodem1234561  115200,8,N,1 ---
--- Quit: Ctrl+] | Menu: Ctrl+T | Help: Ctrl+T followed by Ctrl+H ---

>>> 
>>> import network
>>> wlan = network.WLAN(network.STA_IF)
>>> wlan.active()
False
>>> wlan.active(True)                     <--------- this method call hangs forever
Is anyone able to offer some advice on how to get wifi working for this board?

Thanks in advance.

tepalia02
Posts: 99
Joined: Mon Mar 21, 2022 5:13 am

Re: ESP32-S3 WROOM 1 - WLAN.active(True) Hangs

Post by tepalia02 » Sun Apr 17, 2022 1:46 pm

Hi, it looks like many other people faced the same problem before. You may get some tips from here: viewtopic.php?f=18&t=5835

Post Reply