fix(onboard): lower flash baud rate to 115200 to prevent hang on embedded-flash boards

460800 causes the stub to hang mid-write on ESP32-S3 QFN56 boards with XMC
embedded flash. 115200 skips the post-stub baud rate negotiation entirely.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
jedarden 2026-04-18 21:37:36 -04:00
parent 471db69dbc
commit 33c2628e7e

View file

@ -504,7 +504,7 @@
transport = new Transport(state.port, false);
var loader = new ESPLoader({
transport: transport,
baudrate: 460800,
baudrate: 115200,
terminal: {
clean: function () {},
writeLine: function (s) { appendLog('log', [s]); },