:orphan: .. title:: CMSIS_MAX_THREAD_COUNT .. option:: CONFIG_CMSIS_MAX_THREAD_COUNT *Maximum thread count in CMSIS RTOS application* Type: ``int`` Help ==== Mention max number of threads in CMSIS RTOS compliant application. There's a limitation on the number of threads due to memory related constraints. Direct dependencies =================== \ :option:`CMSIS_RTOS_V1 ` *(Includes any dependencies from if's and menus.)* Defaults ======== - 10 if \ :option:`CMSIS_RTOS_V1 ` Kconfig definition ================== .. highlight:: kconfig At ``lib/cmsis_rtos_v1/Kconfig:16`` Included via ``Kconfig:10`` → ``Kconfig.zephyr:37`` → ``lib/Kconfig:11`` Menu path: (top menu) → Additional libraries → CMSIS RTOS v1 API .. parsed-literal:: config CMSIS_MAX_THREAD_COUNT int prompt "Maximum thread count in CMSIS RTOS application" if \ :option:`CMSIS_RTOS_V1 ` range 0 255 if \ :option:`CMSIS_RTOS_V1 ` default 10 if \ :option:`CMSIS_RTOS_V1 ` depends on \ :option:`CMSIS_RTOS_V1 ` help Mention max number of threads in CMSIS RTOS compliant application. There's a limitation on the number of threads due to memory related constraints. *(Definitions include propagated dependencies, including from if's and menus.)*