-
-
Notifications
You must be signed in to change notification settings - Fork 191
Expand file tree
/
Copy pathKconfig.rtos
More file actions
33 lines (25 loc) · 681 Bytes
/
Kconfig.rtos
File metadata and controls
33 lines (25 loc) · 681 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#
# Copyright (c) .NET Foundation and Contributors
# See LICENSE file in the project root for full license information.
#
choice RTOS_CHOICE
prompt "RTOS"
config RTOS_ESP32
bool "ESP32 (ESP-IDF FreeRTOS)"
config RTOS_CHIBIOS
bool "ChibiOS"
config RTOS_FREERTOS
bool "FreeRTOS"
config RTOS_TI_SIMPLELINK
bool "TI SimpleLink"
config RTOS_THREADX
bool "ThreadX"
endchoice
# String variable consumed by CMake
config RTOS
string
default "ESP32" if RTOS_ESP32
default "ChibiOS" if RTOS_CHIBIOS
default "FreeRTOS" if RTOS_FREERTOS
default "TI_SimpleLink" if RTOS_TI_SIMPLELINK
default "ThreadX" if RTOS_THREADX