1# NPCX WDT driver configuration options
2
3# Copyright (c) 2021 Nuvoton Technology Corporation.
4# SPDX-License-Identifier: Apache-2.0
5
6config WDT_NPCX
7	bool "Nuvoton NPCX embedded controller (EC) Watchdog Timer driver"
8	default y
9	depends on DT_HAS_NUVOTON_NPCX_WATCHDOG_ENABLED
10	help
11	  This option enables the Watchdog Timer driver for NPCX family of
12	  processors.
13	  Say y if you wish to use watchdog on NPCX MCU.
14
15config WDT_NPCX_DELAY_CYCLES
16	int "Number of delay cycles before generating watchdog event/signal"
17	depends on WDT_NPCX
18	range 1 255
19	default 10
20	help
21	  This option defines the window in which a watchdog event must be
22	  handled, in units of 31ms. After this time window, the watchdog reset
23	  triggers immediately.
24