mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-01 22:01:55 +00:00
Every board that uses dts-enabled spi drivers has a board-level dts, so there is no need to have separate configs HAS_DTS_SPI_DEVICE and HAS_DTS_SPI. Signed-off-by: Maureen Helm <maureen.helm@nxp.com>
22 lines
365 B
Plaintext
22 lines
365 B
Plaintext
# Kconfig - ST Microelectronics STM32 MCU line
|
|
#
|
|
# Copyright (c) 2016 Open-RnD Sp. z o.o.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
config SOC_FAMILY_STM32
|
|
bool
|
|
# omit prompt to signify a "hidden" option
|
|
select HAS_SEGGER_RTT
|
|
|
|
if SOC_FAMILY_STM32
|
|
|
|
config SOC_FAMILY
|
|
string
|
|
default "st_stm32"
|
|
|
|
source "soc/arm/st_stm32/*/Kconfig.soc"
|
|
|
|
endif # SOC_FAMILY_STM32
|