mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-02 12:23:03 +00:00
Each driver seemed to use their own Kconfig option to set the name for their drivers. This makes writing example/test code difficult as each one of them will have to special case for each of the supported platforms. Use a consistent CONFIG_WDT_0_NAME option in all drivers. Fixes #8094. Signed-off-by: Leandro Pereira <leandro.pereira@intel.com>
21 lines
439 B
Plaintext
21 lines
439 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
|
|
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.
|