From 4a3f4736a8a9317fd2812bf6f0a634fe90dbf42a Mon Sep 17 00:00:00 2001 From: fl0wl0w Date: Wed, 20 Dec 2023 07:21:29 -0600 Subject: [PATCH] fix: Invalid configuration ESP_SYSTEM_SINGLE_CORE_MODE=y and CONFIG_FREERTOS_UNICORE=n --- components/esp_system/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/components/esp_system/Kconfig b/components/esp_system/Kconfig index a58e509026fd..bd9988fd7a0d 100644 --- a/components/esp_system/Kconfig +++ b/components/esp_system/Kconfig @@ -57,6 +57,7 @@ menu "ESP System Settings" config ESP_SYSTEM_SINGLE_CORE_MODE bool "Only initialize first core." default "y" if FREERTOS_UNICORE + depends on FREERTOS_UNICORE help Only initialize and use the main core. (EXPERIMENTAL, Leave this as default if you don't know what this changes)