ESP8266 Developer Zone The Official ESP8266 Forum 2018-01-02T20:50:51+08:00 https://bbs.espressif.com:443/feed.php?f=65&t=8832 2018-01-02T20:50:51+08:00 2018-01-02T20:50:51+08:00 https://bbs.espressif.com:443/viewtopic.php?t=8832&p=18890#p18890 <![CDATA[Re: Don't use mem data]]> And what is up with the corrupted symbols? Looks like a lot of baud rate error in the logs!

Statistics: Posted by iot-bits.com — Tue Jan 02, 2018 8:50 pm


]]>
2017-12-25T04:44:26+08:00 2017-12-25T04:44:26+08:00 https://bbs.espressif.com:443/viewtopic.php?t=8832&p=18811#p18811 <![CDATA[Don't use mem data]]> I am using esp-wroom-02 module, and using arduino and a logic serial converter for the signals to rx and tx pin. I am putting the module under UART mode and my codes are:

Code:

#include <SoftwareSerial.h>
SoftwareSerial mySerial(2,3); // RX, TX
void setup()
{
 
  Serial.begin(115200);
 
  mySerial.begin(115200);
  //Serial.print(78);
}
void loop()
{
   //Serial.print(mySerial.available());
   //Serial.print(Serial.available());
  if(mySerial.available()){
  Serial.write(mySerial.read());
  //Serial.print(78);
  }
 
 if (Serial.available()){
    //Serial.print(78);
  mySerial.write(Serial.read());
 
  }
 
}

But I keep getting messages like "don't use RTC mem data" does anyone know what the message means and how to solve it? I have attached the messages.
Thanks a lot!!!
problemo.PNG

Statistics: Posted by Logan — Mon Dec 25, 2017 4:44 am


]]>