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	select HAS_WDT_DISABLE_AT_BOOT
9	help
10	  Enable watchdog for CC13xx / CC26xx family of MCUs
11
12config WDT_CC13XX_CC26XX_INITIAL_TIMEOUT
13	int "Value for initial WDT timeout in ms"
14	depends on WDT_CC13XX_CC26XX
15	default 2000
16	range 1 2863311
17	help
18	  The CC13xx/CC26xx watchdog timer is sourced from the MCU clock
19	  using a fixed prescaler of 32.
20	  E.g., for the standard 48 MHz MCU clock, the following:
21	  0xFFFFFFFF / (48^9 / 32 / 1000) [ms]
22