:orphan: .. title:: CONFIG_WDT_NPCX_DELAY_CYCLES .. kconfig:: CONFIG_WDT_NPCX_DELAY_CYCLES CONFIG_WDT_NPCX_DELAY_CYCLES ############################ *Number of delay cycles before generating watchdog event/signal* Type: ``int`` Help ==== .. code-block:: none This option defines the window in which a watchdog event must be handled, in units of 31ms. After this time window, the watchdog reset triggers immediately. Direct dependencies =================== \ :kconfig:`WDT_NPCX ` && \ :kconfig:`WATCHDOG ` *(Includes any dependencies from ifs and menus.)* Default ======= - 10 Kconfig definition ================== At ``/watchdog/Kconfig.npcx:14`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:42`` → ``/Kconfig:54`` → ``/watchdog/Kconfig:55`` Menu path: (Top) → Device Drivers → Watchdog Support → Nuvoton NPCX embedded controller (EC) Watchdog Timer driver .. code-block:: kconfig config WDT_NPCX_DELAY_CYCLES int "Number of delay cycles before generating watchdog event/signal" range 1 255 default 10 depends on WDT_NPCX && WATCHDOG help This option defines the window in which a watchdog event must be handled, in units of 31ms. After this time window, the watchdog reset triggers immediately. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*