zephyr/drivers/watchdog/Kconfig.stm32
Francois Ramu 3dfceded48 drivers: watchdog: disable iwdg at boot on stm32
With this patch, the specific flag IWDG_STM32_START_AT_BOOT
is replaced by the zephyr generic WDT_DISABLE_AT_BOOT.

Signed-off-by: Francois Ramu <francois.ramu@st.com>
2020-03-10 15:12:20 +02:00

28 lines
774 B
Plaintext

# STM32 IWDG configuration
# Copyright (c) 2016 Open-RnD Sp. z o.o.
# Copyright (c) 2017 RnDity Sp. z o.o.
# Copyright (c) 2019 Centaur Analytics, Inc
# SPDX-License-Identifier: Apache-2.0
menuconfig IWDG_STM32
bool "Independent Watchdog (IWDG) Driver for STM32 family of MCUs"
depends on SOC_FAMILY_STM32
help
Enable IWDG driver for STM32 line of MCUs
config IWDG_STM32_TIMEOUT
int "Value for IWDG timeout in [us]"
depends on IWDG_STM32
default 100
range 100 26214400
help
Set timeout value for IWDG in microseconds.
The min timeout supported is 0.1ms, the max timeout is 26214.4ms.
config WWDG_STM32
bool "System Window Watchdog (WWDG) Driver for STM32 family of MCUs"
depends on SOC_FAMILY_STM32
help
Enable WWDG driver for STM32 line of MCUs