1# Copyright (c) 2021 Florin Stancu <niflostancu@gmail.com> 2# SPDX-License-Identifier: Apache-2.0 3 4config WDT_CC13XX_CC26XX 5 bool "Watchdog Driver for CC13xx / CC26xx family of MCUs" 6 default y 7 depends on DT_HAS_TI_CC13XX_CC26XX_WATCHDOG_ENABLED 8 help 9 Enable watchdog for CC13xx / CC26xx family of MCUs 10 11config WDT_CC13XX_CC26XX_INITIAL_TIMEOUT 12 int "Value for initial WDT timeout in ms" 13 depends on WDT_CC13XX_CC26XX 14 default 2000 15 range 1 2863311 16 help 17 The CC13xx/CC26xx watchdog timer is sourced from the MCU clock 18 using a fixed prescaler of 32. 19 E.g., for the standard 48 MHz MCU clock, the following: 20 0xFFFFFFFF / (48^9 / 32 / 1000) [ms] 21