From f28ba098a0187ff05eae63d6fb0bf664d82bb557 Mon Sep 17 00:00:00 2001 From: Sil333033 <94360907+Sil333033@users.noreply.github.com> Date: Sat, 28 Oct 2023 19:26:40 +0200 Subject: [PATCH] Update esp flasher --nobuild check comment in code for reason. istg this shit worked yesterday --- .../esp_flasher/lib/esp-serial-flasher/src/esp_loader.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/applications/external/esp_flasher/lib/esp-serial-flasher/src/esp_loader.c b/applications/external/esp_flasher/lib/esp-serial-flasher/src/esp_loader.c index 6ef32673c..a391e71b2 100644 --- a/applications/external/esp_flasher/lib/esp-serial-flasher/src/esp_loader.c +++ b/applications/external/esp_flasher/lib/esp-serial-flasher/src/esp_loader.c @@ -85,7 +85,10 @@ static uint32_t timeout_per_mb(uint32_t size_bytes, uint32_t time_per_mb) esp_loader_error_t esp_loader_connect(esp_loader_connect_args_t *connect_args) { - loader_port_enter_bootloader(); + // if bootloader mode ever give issues, uncomment this function + // it shouldnt be needed because we enter bootloader mode before this function is called + // this function breaks bootloader mode for the Multi-fucc and Xeon + //loader_port_enter_bootloader(); RETURN_ON_ERROR(loader_initialize_conn(connect_args));