:orphan: .. title:: CONFIG_CMSIS_V2_THREAD_DYNAMIC_MAX_COUNT .. kconfig:: CONFIG_CMSIS_V2_THREAD_DYNAMIC_MAX_COUNT CONFIG_CMSIS_V2_THREAD_DYNAMIC_MAX_COUNT ######################################## *Maximum dynamic thread count in CMSIS RTOS V2 application* Type: ``int`` Help ==== .. code-block:: none Mention max number of dynamic threads in CMSIS RTOS V2 compliant application. There's a limitation on the number of threads due to memory related constraints. Dynamic threads are a subset of all other CMSIS threads i.e. they also count towards that maximum too. Direct dependencies =================== \ :kconfig:`CMSIS_RTOS_V2 ` *(Includes any dependencies from ifs and menus.)* Default ======= - 0 Kconfig definition ================== At ``/portability/cmsis_rtos_v2/Kconfig:27`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:44`` → ``/Kconfig:41`` → ``/portability/Kconfig:8`` Menu path: (Top) → Sub Systems and OS Services → Portability → CMSIS RTOS v2 API .. code-block:: kconfig config CMSIS_V2_THREAD_DYNAMIC_MAX_COUNT int "Maximum dynamic thread count in CMSIS RTOS V2 application" range 0 255 default 0 depends on CMSIS_RTOS_V2 help Mention max number of dynamic threads in CMSIS RTOS V2 compliant application. There's a limitation on the number of threads due to memory related constraints. Dynamic threads are a subset of all other CMSIS threads i.e. they also count towards that maximum too. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*