mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-12 11:25:59 +00:00
Use this short header style in all Kconfig files: # <description> # <copyright> # <license> ... Also change all <description>s from # Kconfig[.extension] - Foo-related options to just # Foo-related options It's clear enough that it's about Kconfig. The <description> cleanup was done with this command, along with some manual cleanup (big letter at the start, etc.) git ls-files '*Kconfig*' | \ xargs sed -i -E '1 s/#\s*Kconfig[\w.-]*\s*-\s*/# /' Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
29 lines
693 B
Plaintext
29 lines
693 B
Plaintext
# ESP32 WDT configuration
|
|
|
|
# Copyright (C) 2017 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menuconfig WDT_ESP32
|
|
bool "ESP32 Watchdog (WDT) Driver"
|
|
depends on SOC_ESP32
|
|
select HAS_DTS_WDT
|
|
default y
|
|
help
|
|
Enable WDT driver for ESP32.
|
|
|
|
config WDT0_ESP32_IRQ
|
|
int "IRQ line for watchdog interrupt"
|
|
depends on WDT_ESP32
|
|
default 24
|
|
help
|
|
Set the IRQ line used by the WDT device. Very few lines can be
|
|
chosen here, as it must be a level 4 interrupt.
|
|
|
|
config WDT1_ESP32_IRQ
|
|
int "IRQ line for watchdog interrupt"
|
|
depends on WDT_ESP32
|
|
default 25
|
|
help
|
|
Set the IRQ line used by the WDT device. Very few lines can be
|
|
chosen here, as it must be a level 4 interrupt.
|