Files
platform-espressif32/boards/featheresp32.json
T
Peter b7c4677ad2 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).
2019-09-18 17:36:55 +03:00

36 lines
708 B
JSON

{
"build": {
"core": "esp32",
"extra_flags": "-DARDUINO_FEATHER_ESP32",
"f_cpu": "240000000L",
"f_flash": "40000000L",
"flash_mode": "dio",
"ldscript": "esp32_out.ld",
"mcu": "esp32",
"variant": "feather_esp32"
},
"connectivity": [
"wifi",
"bluetooth",
"ethernet",
"can"
],
"debug": {
"openocd_board": "esp-wroom-32.cfg"
},
"frameworks": [
"arduino",
"espidf"
],
"name": "Adafruit ESP32 Feather",
"upload": {
"flash_size": "4MB",
"maximum_ram_size": 327680,
"maximum_size": 4194304,
"require_upload_port": true,
"speed": 460800
},
"url": "https://www.adafruit.com/product/3405",
"vendor": "Adafruit"
}