We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f74271 commit dc91709Copy full SHA for dc91709
components/freertos/Kconfig
@@ -1,9 +1,15 @@
1
menu "FreeRTOS"
2
3
- # This is actually also handled in the ESP32 startup code, not only in FreeRTOS.
+ 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
+
10
config FREERTOS_UNICORE
11
+ # This config variable is also checked in the ESP32 startup code, not only in FreeRTOS.
12
bool "Run FreeRTOS only on first core"
- default y if IDF_TARGET_ESP32S2BETA
13
default n
14
help
15
This version of FreeRTOS normally takes control of all cores of
0 commit comments