When i want to receive anything from the serial port with a easy testprogram, the ESP make a reset and give the message below.
Here is the testprogram:
int incomingByte = 0;
void setup() {
Serial.begin(115200);
}
void loop() {
incomingByte = Serial.read();
delay(1000);
Serial.print("I received: ");
Serial.println(incomingByte, DEC);
}
And here is the message from ESP8266
ets Jan 8 2013,rst cause:4, boot mode:(3,7)
wdt reset
load 0x40100000, len 28976, room 16
tail 0
chksum 0x2f
load 0x3ffe8000, len 2404, room 8
tail 12
chksum 0x05
ho 0 tail 12 room 4
load 0x3ffe8970, len 1564, room 12
tail 0
chksum 0x5f
csum 0x5f
rl
I hope anyone have an idea about this problem
Markus