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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -190,7 +190,7 @@ def get_ini_content():
'framework': 'arduino', 'framework': 'arduino',
'lib_deps': lib_deps + ['${common.lib_deps}'], 'lib_deps': lib_deps + ['${common.lib_deps}'],
'build_flags': build_flags + ['${common.build_flags}'], '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: if CORE.is_esp32: