1# ST Microelectronics STM32F0 MCU line
2
3# Copyright (c) 2017 RnDity Sp. z o.o.
4# SPDX-License-Identifier: Apache-2.0
5
6# Kconfig symbols common to STM32F0 series
7
8if SOC_SERIES_STM32F0X
9
10rsource "Kconfig.defconfig.stm32f0*"
11
12config SRAM_VECTOR_TABLE
13	default y
14
15# adjust the fallback because of the LSI oscillator characteristics
16config TASK_WDT_HW_FALLBACK_DELAY
17	depends on TASK_WDT_HW_FALLBACK
18	default 100
19
20endif # SOC_SERIES_STM32F0X
21