2019-11-01 20:45:29 +08:00
|
|
|
# Watchdog configuration options
|
|
|
|
|
2018-04-24 04:07:11 +08:00
|
|
|
# Copyright (c) 2018, NXP
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2019-10-22 07:04:04 +08:00
|
|
|
config WDT_MCUX_WDOG
|
2018-04-24 04:07:11 +08:00
|
|
|
bool "MCUX WDOG driver"
|
2022-07-22 05:24:59 +08:00
|
|
|
default y
|
|
|
|
depends on DT_HAS_NXP_KINETIS_WDOG_ENABLED
|
|
|
|
depends on CLOCK_CONTROL
|
2018-04-24 04:07:11 +08:00
|
|
|
help
|
|
|
|
Enable the mcux wdog driver.
|
2019-05-21 05:13:52 +08:00
|
|
|
|
2019-10-22 07:04:04 +08:00
|
|
|
config WDT_MCUX_WDOG32
|
2019-05-21 05:13:52 +08:00
|
|
|
bool "MCUX WDOG32 driver"
|
2022-07-22 05:24:59 +08:00
|
|
|
default y
|
|
|
|
depends on DT_HAS_NXP_KINETIS_WDOG32_ENABLED
|
|
|
|
depends on CLOCK_CONTROL
|
2019-05-21 05:13:52 +08:00
|
|
|
help
|
|
|
|
Enable the mcux wdog32 driver.
|
2020-07-09 23:56:21 +08:00
|
|
|
|
|
|
|
config WDT_MCUX_WWDT
|
|
|
|
bool "MCUX WWDT driver"
|
2022-07-22 05:24:59 +08:00
|
|
|
default y
|
|
|
|
depends on DT_HAS_NXP_LPC_WWDT_ENABLED
|
2020-07-09 23:56:21 +08:00
|
|
|
help
|
|
|
|
Enable the mcux wwdt driver.
|
2023-09-12 00:49:52 +08:00
|
|
|
|
|
|
|
if WDT_MCUX_WWDT
|
|
|
|
|
|
|
|
config WDT_MCUX_WWDT_WARNING_INTERRUPT_CFG
|
|
|
|
int "WWDT timeout warning interrupt configuration"
|
|
|
|
range 0 1023
|
|
|
|
default 0
|
|
|
|
help
|
|
|
|
WWDT timeout warning interrupt time. The units are
|
|
|
|
the number of watchdog counter ticks before timeout.
|
|
|
|
|
|
|
|
endif # WDT_MCUX_WWDT
|