Skip to content

[Problem] ets Jan 8 2013,rst cause:1, boot mode:(3,4) - HELP #4098

@PunisherX99

Description

@PunisherX99

Basic Infos

Hello to everyone! I'm new on github and the reason is that i prefer to resolve my "granades" myself.
But i'm actually disperate! I've set-up an arduino with an esp8266 12-e module on it , but i get this weird response when i give current to it :

ets Jan 8 2013,rst cause:1, boot mode:(3,4)

load 0x40100000, len 816, room 16
tail 0
chksum 0x8d
load 0x3ffe8000, len 788, room 8
tail 12
m
ioofl 2lm
fde e
M
Sbmnrra e

Hardware

Hardware: Esp8266 12e

Description

Well as i said i get that weird responde AFTER flashing it to AT 1.5.1 ( downloaded from the official site ) , i decide to upgrade it since WiFiEsp told me : "Unsupported Firmware" and i think that was the problem of failing connection with my WiFi - WPA2_PSK network ( BEFORE flashing it i was able to scan the network propely , so the module works ).
First i used "esp8266_flasher" and the "v0.9.2.2 AT Firmware" , but it doesn't seems to change anything! , Then i used ESPFlashDownloadTool ( v3.6.2.2 ) with "AT 1.5.1 Firmware" and when i run the code below i got this response ( and of course the AT command doens't work ).
I've seen that "rst cause:1" is an normal boot anomaly or something like that , but i'm still confused.

image

The pins are :

TX->6
RX ->7
CH_PD+VCC->3.3v
GND->GND ( with GPIO0 when i'm flashing it )

Somebody can help me ? I'm simply frustrating ( ask me for more information ( if i know what we are talking about ) if you need! )

Settings in IDE

Module: Esp8266 12e

Sketch

#include <SoftwareSerial.h>
SoftwareSerial sw (6,7);


void setup() {

  sw.begin(74880);
  Serial.begin(9600);

}
void loop() {

  if(Serial.available()) 
  {  
      sw.write(Serial.read());
       
  }
  
  if(sw.available()) 
  {
    Serial.write(sw.read());
  }
  
}

Debug Messages

ets Jan 8 2013,rst cause:1, boot mode:(3,4)

load 0x40100000, len 816, room 16
tail 0
chksum 0x8d
load 0x3ffe8000, len 788, room 8
tail 12
m
ioofl 2lm
fde e
M
Sbmnrra e

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions