2020-07-27 15:15:56 +02:00
|
|
|
# Copyright (c) 2020 HAW Hamburg
|
|
|
|
#
|
|
|
|
# This file is subject to the terms and conditions of the GNU Lesser
|
|
|
|
# General Public License v2.1. See the file LICENSE in the top level
|
|
|
|
# directory for more details.
|
|
|
|
#
|
|
|
|
|
2020-08-31 09:57:28 +02:00
|
|
|
menuconfig MODULE_CORE
|
2020-07-27 15:15:56 +02:00
|
|
|
bool "RIOT Core"
|
|
|
|
default y
|
|
|
|
depends on TEST_KCONFIG
|
2022-02-15 11:23:58 +01:00
|
|
|
depends on MODULE_CORE_LIB
|
2020-07-27 15:15:56 +02:00
|
|
|
help
|
|
|
|
RIOT's core module. Only change this if you know what you are doing. If
|
|
|
|
unsure, say Y.
|
|
|
|
|
2020-08-31 09:57:28 +02:00
|
|
|
if MODULE_CORE
|
2020-07-27 15:15:56 +02:00
|
|
|
|
2020-08-31 09:57:28 +02:00
|
|
|
config MODULE_CORE_IDLE_THREAD
|
2020-07-27 15:15:56 +02:00
|
|
|
bool
|
|
|
|
prompt "Use Idle thread" if HAS_NO_IDLE_THREAD
|
|
|
|
default y if !HAS_NO_IDLE_THREAD
|
|
|
|
help
|
|
|
|
Select y to include the Idle thread. This is mandatory for some CPUs.
|
|
|
|
|
2020-08-31 09:57:28 +02:00
|
|
|
config MODULE_CORE_INIT
|
2020-07-27 15:15:56 +02:00
|
|
|
bool "Kernel initialization module"
|
|
|
|
default y
|
|
|
|
|
2020-08-31 09:57:28 +02:00
|
|
|
config MODULE_CORE_MBOX
|
2020-07-27 15:15:56 +02:00
|
|
|
bool "Kernel message box module"
|
|
|
|
|
2020-08-31 09:57:28 +02:00
|
|
|
config MODULE_CORE_MSG
|
2020-07-27 15:15:56 +02:00
|
|
|
bool "Kernel messaging module"
|
|
|
|
default y
|
|
|
|
|
2020-08-31 09:57:28 +02:00
|
|
|
config MODULE_CORE_MSG_BUS
|
2020-07-27 15:15:56 +02:00
|
|
|
bool "Messaging Bus module"
|
|
|
|
help
|
|
|
|
Messaging Bus API for inter process message broadcast.
|
|
|
|
|
2022-09-21 13:37:04 +02:00
|
|
|
config MODULE_CORE_MUTEX_DEBUG
|
|
|
|
bool "Aid debugging deadlocks by printing on whom mutex_lock() is waiting"
|
|
|
|
|
2022-03-09 21:20:57 +01:00
|
|
|
config MODULE_CORE_MUTEX_PRIORITY_INHERITANCE
|
|
|
|
bool "Use priority inheritance to mitigate priority inversion for mutexes"
|
|
|
|
|
2020-08-31 09:57:28 +02:00
|
|
|
config MODULE_CORE_PANIC
|
2020-07-27 15:15:56 +02:00
|
|
|
bool "Kernel crash handling module"
|
|
|
|
default y
|
|
|
|
|
2021-12-10 15:43:51 +01:00
|
|
|
config MODULE_CORE_THREAD
|
|
|
|
bool "Support for Threads"
|
|
|
|
default y
|
|
|
|
|
2020-08-31 09:57:28 +02:00
|
|
|
config MODULE_CORE_THREAD_FLAGS
|
2020-07-27 15:15:56 +02:00
|
|
|
bool "Thread flags"
|
|
|
|
|
2020-08-18 09:13:04 +02:00
|
|
|
config MODULE_SCHED_CB
|
|
|
|
bool "Callback support on the scheduler"
|
|
|
|
|
2020-08-31 09:57:28 +02:00
|
|
|
endif # MODULE_CORE
|
2019-11-24 16:19:48 +01:00
|
|
|
|
2022-03-18 08:23:46 +01:00
|
|
|
config MODULE_CORE_LIB
|
|
|
|
bool
|
|
|
|
default y
|
|
|
|
help
|
|
|
|
Select y to to include core libs
|
|
|
|
|
2019-11-24 16:19:48 +01:00
|
|
|
menuconfig KCONFIG_USEMODULE_CORE
|
|
|
|
bool "Configure RIOT Core"
|
|
|
|
depends on USEMODULE_CORE
|
|
|
|
help
|
|
|
|
Configure RIOT Core using Kconfig.
|
|
|
|
|
|
|
|
if KCONFIG_USEMODULE_CORE
|
|
|
|
|
|
|
|
config THREAD_NAMES
|
|
|
|
bool "Store thread name strings"
|
|
|
|
help
|
|
|
|
By default, thread names are not stored if DEVELHELP is not used.
|
|
|
|
Use this parameter to store them for non-devel builds.
|
|
|
|
|
|
|
|
endif # KCONFIG_USEMODULE_CORE
|