-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Description
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.
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