:orphan: .. title:: CONFIG_TASK_WDT_CHANNELS .. kconfig:: CONFIG_TASK_WDT_CHANNELS CONFIG_TASK_WDT_CHANNELS ######################## *Maximum number of task watchdog channels* Type: ``int`` Help ==== .. code-block:: none The timeouts for each channel are stored in an array. Allocate only the required amount of channels to reduce memory footprint. Direct dependencies =================== \ :kconfig:`TASK_WDT ` *(Includes any dependencies from ifs and menus.)* Default ======= - 5 Kconfig definition ================== At ``/task_wdt/Kconfig:15`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:44`` → ``/Kconfig:59`` Menu path: (Top) → Sub Systems and OS Services → Task-level software watchdog .. code-block:: kconfig config TASK_WDT_CHANNELS int "Maximum number of task watchdog channels" range 2 100 default 5 depends on TASK_WDT help The timeouts for each channel are stored in an array. Allocate only the required amount of channels to reduce memory footprint. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*