1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-03 20:02:22 +01:00

Use higher default baudrate for USB upload (#761)

See also https://github.com/espressif/esptool/issues/435
This commit is contained in:
Otto Winter
2019-10-18 10:23:06 +02:00
committed by GitHub
parent ee0b6e835f
commit 22aecdfc6f
3 changed files with 3 additions and 3 deletions

View File

@@ -191,7 +191,7 @@ def get_ini_content():
'framework': 'arduino',
'lib_deps': lib_deps + ['${common.lib_deps}'],
'build_flags': build_flags + ['${common.build_flags}'],
'upload_speed': UPLOAD_SPEED_OVERRIDE.get(CORE.board, 115200),
'upload_speed': UPLOAD_SPEED_OVERRIDE.get(CORE.board, 460800),
}
if CORE.is_esp32: