Editor Baud Rate

Hi.
My arduino nano board (I'm not sure about it's authenticity) works fine with the desktop editor.

On the web editor I get "programmer is not responding". This is due to the baud rate not being set correctly "-b115200". If I run the avrdude command myself with a baud rate of 57600 it uploads fine.

Are all nanos suppose to be 115200 ? Is there some way to change the baud rate on the web editor ?
The baud rate I set the port to in device manager in windows seemingly doesn't make a difference.

Thanks!

There are three different hardware/bootloader versions available

Have you tried both of the latter 328 ones ?

Hi,
Yes I tried changing the flavors, they don't seem to make a difference to the selected baud rate the web editor specifies.

Here is the command generated by the web editor:

C:/Users/Reyn/.arduino-create/arduino/avrdude/6.3.0-arduino9/bin/avrdude.exe -CC:/Users/Reyn/.arduino-create/arduino/avrdude/6.3.0-arduino9/etc/avrdude.conf -v -patmega328p -carduino -PCOM8 -b115200 -D -Uflash:w:C:/Users/Reyn/AppData/Local/Temp/arduino-create-agent269394079/Test.hex:i

When simply change the -b115200 to -b57600 and run that myself everything works fine.
I also tried changing all the 115200's in the avrdude.conf to 57600, which didn't make a difference.

Thanks