Skip to content

Commit dc91709

Browse files
committed
freertos: Force UNICORE mode on ESP32S2
1 parent 8f74271 commit dc91709

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

components/freertos/Kconfig

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
menu "FreeRTOS"
22

3-
# This is actually also handled in the ESP32 startup code, not only in FreeRTOS.
3+
config FREERTOS_SINGLE_CORE_ONLY
4+
# invisible config item to always select FREERTOS_UNICORE on single core IDF_TARGET
5+
bool
6+
default y
7+
depends on IDF_TARGET_ESP32S2BETA
8+
select FREERTOS_UNICORE
9+
410
config FREERTOS_UNICORE
11+
# This config variable is also checked in the ESP32 startup code, not only in FreeRTOS.
512
bool "Run FreeRTOS only on first core"
6-
default y if IDF_TARGET_ESP32S2BETA
713
default n
814
help
915
This version of FreeRTOS normally takes control of all cores of

0 commit comments

Comments
 (0)