1# Copyright 2025 NXP 2# SPDX-License-Identifier: Apache-2.0 3 4source "Kconfig.zephyr" 5 6config TEST_WDT_MAX_WINDOW_TIME 7 int "Watchdog Max Value" 8 default 1000 9 help 10 Set the watchdog max window time to feed the watchdog. 11 The units for this value will change based on the watchdog 12 driver being tested. Most drivers represent this as milliseconds 13 due to the max window reaching the millisecond feed window. 14 15config TEST_WDT_SLEEP_TIME 16 int "Watchdog Sleep Time" 17 default 500 18 help 19 Set the test sleep time between watchdog feeds. 20 The units for this value will change based on the watchdog 21 driver being tested. Most drivers represent this as milliseconds 22 due to the max window reaching the millisecond feed window. 23