95fb0ded6b
According to Kconfig guidelines, boolean prompts must not start with "Enable...". The following command has been used to automate the changes in this patch: sed -i "s/bool \"[Ee]nables\? \(\w\)/bool \"\U\1/g" **/Kconfig* Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
26 lines
532 B
Plaintext
26 lines
532 B
Plaintext
# nrfx WDT support
|
|
|
|
# Copyright (c) 2018, Nordic Semiconductor ASA
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config WDT_NRFX
|
|
bool "nRF WDT nrfx driver"
|
|
default y
|
|
depends on SOC_FAMILY_NRF
|
|
select NRFX_WDT
|
|
help
|
|
Enable support for nrfx WDT driver for nRF MCU series.
|
|
|
|
config NRFX_WDT0
|
|
bool "WDT0 instance"
|
|
depends on HAS_HW_NRF_WDT || HAS_HW_NRF_WDT0
|
|
default y
|
|
help
|
|
Enable support for nrfx WDT instance 0.
|
|
|
|
config NRFX_WDT1
|
|
bool "WDT1 instance"
|
|
depends on HAS_HW_NRF_WDT1
|
|
help
|
|
Enable support for nrfx WDT instance 1.
|