Skip to content

Commit b7c4677

Browse files
pfeerickvaleros
authored andcommitted
Change default serial upload speed to 460k (#223)
Whilst the esp8266/Arduino core has defaulted and limited their upload speeds to 460800, the ESP32 core has not, but is subject to the same issues, namely compatability issues with CH340 usb serial chip and higher baud rates (possibly only on *nix based systems). There is possibly little benefit going higher than 460800 due to flash erase and write times rather than serial transfer times (even if it were to connect reliably).
1 parent 4e9904e commit b7c4677

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+59
-59
lines changed

boards/alksesp32.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"maximum_ram_size": 327680,
2828
"maximum_size": 4194304,
2929
"require_upload_port": true,
30-
"speed": 921600
30+
"speed": 460800
3131
},
3232
"url": "https://github.com/RoboticsBrno/ArduinoLearningKitStarter.git",
3333
"vendor": "RoboticsBrno"

boards/bpi-bit.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"maximum_ram_size": 327680,
2626
"maximum_size": 4194304,
2727
"require_upload_port": true,
28-
"speed": 921600
28+
"speed": 460800
2929
},
3030
"url": "https://en.wikipedia.org/wiki/ESP32",
3131
"vendor": "BPI Tech"

boards/d-duino-32.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"maximum_ram_size": 327680,
2929
"maximum_size": 4194304,
3030
"require_upload_port": true,
31-
"speed": 921600
31+
"speed": 460800
3232
},
3333
"url": "https://www.tindie.com/products/lspoplove/dstike-d-duino-32-v3/",
3434
"vendor": "DSTIKE"

boards/esp-wrover-kit.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"ftdi"
4444
],
4545
"require_upload_port": true,
46-
"speed": 921600
46+
"speed": 460800
4747
},
4848
"url": "https://espressif.com/en/products/hardware/esp-wrover-kit/overview",
4949
"vendor": "Espressif"

boards/esp32-evb.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"maximum_ram_size": 327680,
2929
"maximum_size": 4194304,
3030
"require_upload_port": true,
31-
"speed": 921600
31+
"speed": 460800
3232
},
3333
"url": "https://www.olimex.com/Products/IoT/ESP32-EVB/open-source-hardware",
3434
"vendor": "OLIMEX"

boards/esp32-gateway.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"maximum_ram_size": 327680,
2929
"maximum_size": 4194304,
3030
"require_upload_port": true,
31-
"speed": 921600
31+
"speed": 460800
3232
},
3333
"url": "https://www.olimex.com/Products/IoT/ESP32-GATEWAY/open-source-hardware",
3434
"vendor": "OLIMEX"

boards/esp32-poe.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"maximum_ram_size": 327680,
2626
"maximum_size": 4194304,
2727
"require_upload_port": true,
28-
"speed": 921600
28+
"speed": 460800
2929
},
3030
"url": "https://www.olimex.com/Products/IoT/ESP32/ESP32-POE/open-source-hardware",
3131
"vendor": "OLIMEX"

boards/esp32-pro.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"maximum_ram_size": 327680,
2626
"maximum_size": 4194304,
2727
"require_upload_port": true,
28-
"speed": 921600
28+
"speed": 460800
2929
},
3030
"url": "https://www.olimex.com/Products/IoT/ESP32/ESP32-PRO/open-source-hardware",
3131
"vendor": "OLIMEX"

boards/esp320.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"maximum_ram_size": 327680,
2626
"maximum_size": 4194304,
2727
"require_upload_port": true,
28-
"speed": 921600
28+
"speed": 460800
2929
},
3030
"url": "http://www.sweetpeas.se/controller-modules/10-esp210.html",
3131
"vendor": "Electronic SweetPeas"

boards/esp32dev.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"maximum_ram_size": 327680,
2929
"maximum_size": 4194304,
3030
"require_upload_port": true,
31-
"speed": 921600
31+
"speed": 460800
3232
},
3333
"url": "https://en.wikipedia.org/wiki/ESP32",
3434
"vendor": "Espressif"

0 commit comments

Comments
 (0)