Closed
Description
EDIT: closed in favor of #9749
Originally posted by @c--- in #9173 (comment)
Adafruit CircuitPython 9.2.0-beta.1 on 2024-10-11; Maker Go ESP32C3 Supermini with ESP32-C3
As far as I can tell, server.poll()
might be the cause.
Currently using the following code.py that still crashes:
import wifi
import socketpool
from adafruit_httpserver import Server
pool = socketpool.SocketPool(wifi.radio)
server = Server(pool, debug=False)
while True:
try:
server.poll()
except Exception as e:
print(str(e))