1# STMicroelectronics STM32F4 MCU line
2
3# Copyright (c) 2016 Linaro Limited
4# SPDX-License-Identifier: Apache-2.0
5
6# Kconfig symbols common to STM32F4 series
7
8if SOC_SERIES_STM32F4X
9
10rsource "Kconfig.defconfig.stm32f4*"
11
12# adjust the fallback because of the LSI oscaillator characteristics
13config TASK_WDT_HW_FALLBACK_DELAY
14	depends on TASK_WDT_HW_FALLBACK
15	default 200
16
17if PM
18
19config COUNTER
20	default y
21
22config COUNTER_RTC_STM32_SUBSECONDS
23	default y if DT_HAS_ST_STM32_RTC_ENABLED
24
25config IDLE_STACK_SIZE
26	default 512
27
28endif # PM
29
30endif # SOC_SERIES_STM32F4X
31