ets Jan 8 2013,rst cause:4, boot mode:(3,6) with wifi
Posted: Wed Feb 10, 2021 9:41 pm
Hi!
Is this a common/expected issue?
I have found several threads with similar issue but I have not found how to solve it yet?
I get this error only when I am using a wifi connection. Using a wifi connection in my projects is the only reason I got started with micropython so now I am stuck from start
I am curious of the nature of this issue though.. The only way I can make the cycle stop is to erase and flash my ESP8266 board. I have 3 boards and facing the same problem on each of them. Noing a soft reset or program interuption does not do anything to stop the message to in a loop print to the console (like every 5-10seconds or so)
This is the code for connecting to WIFI. Which is basically the only thing the program does at the moment.
Is this a common/expected issue?
I have found several threads with similar issue but I have not found how to solve it yet?
I get this error only when I am using a wifi connection. Using a wifi connection in my projects is the only reason I got started with micropython so now I am stuck from start

I am curious of the nature of this issue though.. The only way I can make the cycle stop is to erase and flash my ESP8266 board. I have 3 boards and facing the same problem on each of them. Noing a soft reset or program interuption does not do anything to stop the message to in a loop print to the console (like every 5-10seconds or so)
Code: Select all
ets Jan 8 2013,rst cause:4, boot mode:(3,6)
wdt reset
load 0x40100000, len 30712, room 16
tail 8
chksum 0xd5
load 0x3ffe8000, len 996, room 0
tail 4
chksum 0x2e
load 0x3ffe83f0, len 1064, room 4
tail 4
chksum 0xfd
csum 0xfd
???o??{??o|?llll`??r?l?l?l`??r?l?l?l`??r?l??ll`{d??rd????b??c?ccs??sc??g??gg?l??l?l??ll???????d?g?cd?brlrlr?n???d?????d?d
MicroPython v1.14 on 2021-02-02; ESP module with ESP8266
Type "help()" for more information.
Code: Select all
def connect():
import network
ssid = "yourNetworkName"
password = "yourNetworkPassword"
station = network.WLAN(network.STA_IF)
if station.isconnected() == True:
print("Already connected")
return
station.active(True)
station.connect(ssid, password)
while station.isconnected() == False:
pass
print("Connection successful")
print(station.ifconfig())