1# Infineon XMC4xxx WDT configuration 2 3# Copyright (C) 2023 SLB 4# SPDX-License-Identifier: Apache-2.0 5 6config WDT_XMC4XXX 7 bool "Infineon XMC4xxx MCU Family Watchdog (WDT) Driver" 8 default y 9 depends on DT_HAS_INFINEON_XMC4XXX_WATCHDOG_ENABLED 10 select HAS_WDT_DISABLE_AT_BOOT 11 help 12 Enable WDT driver for Infineon XMC4xxx MCUs. 13 14if WDT_XMC4XXX && !WDT_DISABLE_AT_BOOT 15 16config WDT_XMC4XXX_DEFAULT_TIMEOUT_MAX_MS 17 int "Default watchdog timeout to use at startup" 18 default 20000 19 help 20 Default watchdog timeout to use if the watchdog is not disabled 21 at startup. 22 23endif 24