Use this forum to chat about hardware specific topics for the ESP8266 (peripherals, memory, clocks, JTAG, programming)

User avatar
By manny009
#63464 Can anyone confirm if I have changed my baudrate correctly?

So my ESP8266 module is set to 115200 baud, but I need it to work at 9600 baud.

In my code that I have uploaded directly to the ESP module I have said to read the serial port at 9600 but my Arduino IDE settings still say 115200 baud as it will only flash on this setting. Changing the IDE settings to 9600 as well, will result in a memory inaccessible error when trying to flash.

What rate will the data be read???


Thanks
You do not have the required permissions to view the files attached to this post.
User avatar
By schufti
#63481 the setting you changed only affects flashing speed and should be left at 115200.

the setting according to the "Serial.begin(9600)" in your sketch is done directly in the serial monitor window dropdown box.
User avatar
By manny009
#63499
schufti wrote:the setting you changed only affects flashing speed and should be left at 115200.

the setting according to the "Serial.begin(9600)" in your sketch is done directly in the serial monitor window dropdown box.



Excellent! Thank You :)