| 1234567891011121314151617181920212223242526272829303132333435 | 
							- # Watchdog configuration options
 
- # Copyright (c) 2015 Intel Corporation
 
- # Copyright (c) 2017 Nordic Semiconductor ASA
 
- # SPDX-License-Identifier: Apache-2.0
 
- menuconfig WATCHDOG
 
- 	bool "Watchdog Support"
 
- 	select HAS_DTS_WDT
 
- 	help
 
- 	  Include support for watchdogs.
 
- if WATCHDOG
 
- config WDT_DISABLE_AT_BOOT
 
- 	bool "Disable at boot"
 
- 	help
 
- 	  Disable watchdog at Zephyr system startup.
 
- module = WDT
 
- module-str = watchdog
 
- source "subsys/logging/Kconfig.template.log_config"
 
- config HAS_WDT_MULTISTAGE
 
- 	bool
 
- config WDT_MULTISTAGE
 
- 	bool "Enable multistage timeouts"
 
- 	depends on HAS_WDT_MULTISTAGE
 
- 	help
 
- 	  Enable multistage operation of watchdog timeouts.
 
- source "drivers/watchdog/Kconfig.acts"
 
- endif
 
 
  |