mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-01 20:33:30 +00:00
The majority of bits where already in place, but some minor support get the driver name from DTS was needed. Now we select HAS_DTS_WDT for the driver. Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
22 lines
459 B
Plaintext
22 lines
459 B
Plaintext
# Kconfig - Atmel SAM WDT configuration
|
|
#
|
|
# Copyright (C) 2017 Intel Deutschland GmbH
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
menuconfig WDT_SAM
|
|
bool "Atmel SAM MCU Family Watchdog (WDT) Driver"
|
|
depends on SOC_FAMILY_SAM
|
|
select HAS_DTS_WDT
|
|
default y
|
|
help
|
|
Enable WDT driver for Atmel SAM MCUs.
|
|
|
|
config WDT_SAM_DISABLE_AT_BOOT
|
|
bool "Disable WDT during boot"
|
|
depends on WDT_SAM
|
|
default y
|
|
help
|
|
Select this option to disable the WDT during boot.
|