2021-07-21 00:07:53 -04:00
|
|
|
menu "FreeRTOS"
|
|
|
|
|
2022-09-06 10:09:23 -04:00
|
|
|
menu "Kernel"
|
|
|
|
config FREERTOS_HZ
|
|
|
|
int "configTICK_RATE_HZ"
|
|
|
|
range 1 1000
|
|
|
|
default 1000
|
|
|
|
help
|
|
|
|
Sets the FreeRTOS tick interrupt frequency in Hz (see configTICK_RATE_HZ documentation for more
|
|
|
|
details).
|
|
|
|
|
|
|
|
config FREERTOS_MAX_TASK_NAME_LEN
|
|
|
|
int "configMAX_TASK_NAME_LEN"
|
|
|
|
range 1 256
|
|
|
|
default 16
|
|
|
|
help
|
|
|
|
Sets the maximum number of characters for task names (see configMAX_TASK_NAME_LEN documentation for
|
|
|
|
more details).
|
|
|
|
|
|
|
|
Note: For most uses, the default of 16 characters is sufficient.
|
2022-10-31 13:00:52 -04:00
|
|
|
|
|
|
|
config FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES
|
|
|
|
int "configTASK_NOTIFICATION_ARRAY_ENTRIES"
|
|
|
|
range 1 32
|
|
|
|
default 1
|
|
|
|
help
|
|
|
|
Set the size of the task notification array of each task. When increasing this value, keep in
|
|
|
|
mind that this means additional memory for each and every task on the system.
|
|
|
|
However, task notifications in general are more light weight compared to alternatives
|
|
|
|
such as semaphores.
|
2022-09-06 10:09:23 -04:00
|
|
|
endmenu
|
2023-01-16 22:44:14 -05:00
|
|
|
|
|
|
|
config FREERTOS_NO_AFFINITY
|
|
|
|
# This invisible config value sets the value of tskNO_AFFINITY in task.h.
|
|
|
|
# Intended to be used as a constant from other Kconfig files.
|
|
|
|
# Value is (32-bit) INT_MAX.
|
|
|
|
hex
|
|
|
|
default 0x7FFFFFFF if !FREERTOS_SMP
|
|
|
|
default 0xFFFFFFFF if FREERTOS_SMP
|
2021-07-21 00:07:53 -04:00
|
|
|
endmenu
|