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

Revert ESP32 default upload speed to 115200 (#978)

This commit is contained in:
Otto Winter
2020-02-16 00:48:08 +01:00
committed by GitHub
parent 1d136ab0df
commit 6ae1efcf9f

View File

@@ -190,7 +190,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, 460800),
'upload_speed': UPLOAD_SPEED_OVERRIDE.get(CORE.board, 115200),
}
if CORE.is_esp32: