mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-22 05:45:21 +00:00
Bool symbols implicitly default to 'n'. A 'default n' can make sense e.g. in a Kconfig.defconfig file, if you want to override a 'default y' on the base definition of the symbol. It isn't used like that on any of these symbols though, and is inconsistent. This will make the auto-generated Kconfig documentation have "No defaults. Implicitly defaults to n." as well, which is clearer than 'default n if ...' Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
30 lines
639 B
Plaintext
30 lines
639 B
Plaintext
# Kconfig - STM32 SPI driver configuration options
|
|
|
|
#
|
|
# Copyright (c) 2015-2016 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
menuconfig SPI_STM32
|
|
bool "STM32 MCU SPI controller driver"
|
|
depends on SPI && SOC_FAMILY_STM32
|
|
select HAS_DTS_SPI
|
|
select USE_STM32_LL_SPI
|
|
help
|
|
Enable SPI support on the STM32 family of processors.
|
|
|
|
if SPI_STM32
|
|
|
|
config SPI_STM32_HAS_FIFO
|
|
bool
|
|
depends on SOC_SERIES_STM32L4X || SOC_SERIES_STM32F0X || SOC_SERIES_STM32F3X
|
|
default y
|
|
|
|
config SPI_STM32_INTERRUPT
|
|
bool "STM32 MCU SPI Interrupt Support"
|
|
help
|
|
Enable Interrupt support for the SPI Driver of STM32 family.
|
|
|
|
endif # SPI_STM32
|