Doing sta_if = network.WLAN(network.STA_IF); sta_if.active(True) from micropython, I get:
E (79845) wifi: Expected to init 10 rx buffer, actual is 8
E (79855) [modnetwork]: Error initializing WiFi (257)
This error appears to be produced in libpp.a. I understand the actual problem is likely outside this lib, but could you help out explaining in what direction this error should point me?
Doing
sta_if = network.WLAN(network.STA_IF); sta_if.active(True)
from micropython, I get:This error appears to be produced in
libpp.a
. I understand the actual problem is likely outside this lib, but could you help out explaining in what direction this error should point me?(I am on commit
559a9def5
of esp-idf`)