18 lines
423 B
Plaintext
18 lines
423 B
Plaintext
# ST Microelectronics STM32L0 MCU line
|
|
|
|
# Copyright (c) 2018 Endre Karlson <endre.karlson@gmail.com>
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# Kconfig symbols common to STM32L0 series
|
|
|
|
if SOC_SERIES_STM32L0X
|
|
|
|
rsource "Kconfig.defconfig.stm32l0*"
|
|
|
|
# adjust the fallback because of the LSI oscillator characteristics
|
|
config TASK_WDT_HW_FALLBACK_DELAY
|
|
depends on TASK_WDT_HW_FALLBACK
|
|
default 200
|
|
|
|
endif # SOC_SERIES_STM32L0X
|