1# Watchdog configuration options 2 3# Copyright (c) 2018, NXP 4# SPDX-License-Identifier: Apache-2.0 5 6config WDT_MCUX_WDOG 7 bool "MCUX WDOG driver" 8 default y 9 depends on DT_HAS_NXP_KINETIS_WDOG_ENABLED 10 depends on CLOCK_CONTROL 11 help 12 Enable the mcux wdog driver. 13 14config WDT_MCUX_WDOG32 15 bool "MCUX WDOG32 driver" 16 default y 17 depends on DT_HAS_NXP_KINETIS_WDOG32_ENABLED 18 depends on CLOCK_CONTROL 19 help 20 Enable the mcux wdog32 driver. 21 22config WDT_MCUX_WWDT 23 bool "MCUX WWDT driver" 24 default y 25 depends on DT_HAS_NXP_LPC_WWDT_ENABLED 26 help 27 Enable the mcux wwdt driver. 28 29if WDT_MCUX_WWDT 30 31config WDT_MCUX_WWDT_WARNING_INTERRUPT_CFG 32 int "WWDT timeout warning interrupt configuration" 33 range 0 1023 34 default 0 35 help 36 WWDT timeout warning interrupt time. The units are 37 the number of watchdog counter ticks before timeout. 38 39endif # WDT_MCUX_WWDT 40