CONFIG_TASK_WDT_CHANNELS

Maximum number of task watchdog channels

Type: int

Help

The timeouts for each channel are stored in an array. Allocate only
the required amount of channels to reduce memory footprint.

Direct dependencies

TASK_WDT

(Includes any dependencies from ifs and menus.)

Default

  • 5

Kconfig definition

At <Zephyr>/subsys/task_wdt/Kconfig:15

Included via <Zephyr>/Kconfig:8<Zephyr>/Kconfig.zephyr:42<Zephyr>/subsys/Kconfig:59

Menu path: (Top) → Sub Systems and OS Services → Task-level software watchdog

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.)