blob: de677089d4d07223d711f79e5ca1e4c21762ce48 [file] [log] [blame]
Andriy Gelmand0961752023-09-21 15:47:13 -04001# 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
Andrzej Głąbek7abb9d72024-05-21 16:57:07 +020010 select HAS_WDT_DISABLE_AT_BOOT
Andriy Gelmand0961752023-09-21 15:47:13 -040011 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