From 46944f86688e4e972336dc1f75f9e62eb6ac7b6d Mon Sep 17 00:00:00 2001 From: Jason2866 <24528715+Jason2866@users.noreply.github.com> Date: Sun, 16 Nov 2025 17:30:50 +0100 Subject: [PATCH] Update esp32-solo1.json with bootloader config when flash mode QIO is used. IDF does not correctly init solo1 MCUs in mode QIO. The settings forces correct init --- boards/esp32-solo1.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/boards/esp32-solo1.json b/boards/esp32-solo1.json index 377f48b72..1202c7a8b 100644 --- a/boards/esp32-solo1.json +++ b/boards/esp32-solo1.json @@ -43,7 +43,9 @@ }, "espidf": { "custom_sdkconfig": [ - "CONFIG_FREERTOS_UNICORE=y" + "CONFIG_FREERTOS_UNICORE=y", + "# CONFIG_BOOTLOADER_SPI_CUSTOM_WP_PIN is not set", + "CONFIG_BOOTLOADER_SPI_WP_PIN=7" ] }, "url": "https://www.espressif.com/sites/default/files/documentation/esp32-solo-1_datasheet_en.pdf",