From 29cadaa23bc43f069e7f5e2bf084672d82519986 Mon Sep 17 00:00:00 2001 From: deadprogram Date: Sun, 29 Mar 2026 12:52:41 +0200 Subject: [PATCH] main: add extra second of delay when flashing esp32 boards before reset Signed-off-by: deadprogram --- main.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main.go b/main.go index 30985022e..5316798a1 100644 --- a/main.go +++ b/main.go @@ -1083,6 +1083,8 @@ func flashBinUsingEsp32(port, resetMode, tmppath string, options *compileopts.Op } fmt.Println() + time.Sleep(time.Second) + // Reset the device to run the new firmware flasher.Reset()