b7c4677ad23d4f1c2b7a2b97f10954d4643cdd14
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).
Espressif 32: development platform for PlatformIO
Espressif Systems is a privately held fabless semiconductor company. They provide wireless communications and Wi-Fi chips which are widely used in mobile devices and the Internet of Things applications.
- Home (home page in PlatformIO Platform Registry)
- Documentation (advanced usage, packages, boards, frameworks, etc.)
Usage
- Install PlatformIO
- Create PlatformIO project and configure a platform option in platformio.ini file:
Stable version
[env:stable]
platform = espressif32
board = ...
...
Development version
[env:development]
platform = https://github.com/platformio/platform-espressif32.git
board = ...
...
Configuration
Please navigate to documentation.
Description