QUERY · ISSUE
ESP32: WebREPL: network.WLAN(network.AP_IF) is not set to active on boot.
port-esp32
The AP is set up, but is not set to active on boot. Per the documentation, this should "just work"?
I can connect to the device using the serial REPL, and issue:
import network
network.WLAN(network.AP_IF).active(True)
To enable the AP.
CANDIDATE · PULL REQUEST
Fixed issue with AP being configured while not being active
AP mode should be explicitly enabled. Had a crash because of this after flashing the firmware.