1# ARM CMSDK (Cortex-M System Design Kit) AHB WDOG cfg 2 3# Copyright (c) 2016 Linaro Limited 4# SPDX-License-Identifier: Apache-2.0 5 6config WDOG_CMSDK_APB 7 bool "CMSDK APB Watchdog Driver for ARM family of MCUs" 8 default y 9 depends on DT_HAS_ARM_CMSDK_WATCHDOG_ENABLED 10 depends on RUNTIME_NMI 11 help 12 Enable CMSDK APB Watchdog (WDOG_CMSDK_APB) Driver for ARM 13 family of MCUs. 14 15config WDOG_CMSDK_APB_START_AT_BOOT 16 bool "Start Watchdog during boot" 17 depends on WDOG_CMSDK_APB 18 help 19 Enable this setting to allow WDOG to be automatically started 20 during device initialization. Note that once WDOG is started 21 it must be reloaded before the counter reaches 0, otherwise 22 the MCU will be reset. 23