:orphan: .. title:: TASK_WDT_CHANNELS .. option:: 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 =================== \ :option:`TASK_WDT ` *(Includes any dependencies from ifs and menus.)* Default ======= - 5 Kconfig definition ================== At ``/task_wdt/Kconfig:15`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:34`` → ``/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.)*