From 33c2628e7eb682ea7486355116c49a621b19b7b8 Mon Sep 17 00:00:00 2001 From: jedarden Date: Sat, 18 Apr 2026 21:37:36 -0400 Subject: [PATCH] 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 --- dashboard/js/onboard.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard/js/onboard.js b/dashboard/js/onboard.js index 4822cc7..999c337 100644 --- a/dashboard/js/onboard.js +++ b/dashboard/js/onboard.js @@ -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]); },