Building the esp8266 port from 9d484c4, I see the following when I boot my board:
#5 ets_task(40100394, 3, 3fff83f0, 4)
Performing initial setup
Traceback (most recent call last):
File "_boot.py", line 12, in <module>
File "inisetup.py", line 38, in setup
File "inisetup.py", line 6, in wifi
ImportError: no module named 'ubinascii'
The inisetup.py module is looking for ubinascii, but only binascii is available:
>>> import ubinascii
ImportError: no module named 'ubinascii'
>>> import binascii
>>>
We should probably modify inisetup.py to use the same import semantics as websocket_helper.py:
try:
import ubinascii as binascii
except:
import binascii
Building the esp8266 port from 9d484c4, I see the following when I boot my board:
The
inisetup.pymodule is looking forubinascii, but onlybinasciiis available:We should probably modify
inisetup.pyto use the same import semantics aswebsocket_helper.py: