25 lines
562 B
Plaintext
25 lines
562 B
Plaintext
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
#
|
|
|
|
if ARCH_BOARD_CLICKER2_STM32
|
|
|
|
config CLICKER2_STM32_MB1_SPI
|
|
bool "mikroBUS1 SPI"
|
|
default n if !STM32_SPI3
|
|
default y if STM32_SPI3
|
|
select STM32_SPI3
|
|
---help---
|
|
Enable SPI support on mikroBUS1 (STM32 SPI3)
|
|
|
|
config CLICKER2_STM32_MB2_SPI
|
|
bool "mikroBUS2 SPI"
|
|
default n if !STM32_SPI2
|
|
default y if STM32_SPI2
|
|
select STM32_SPI2
|
|
---help---
|
|
Enable SPI support on mikroBUS1 (STM32 SPI2)
|
|
|
|
endif # ARCH_BOARD_CLICKER2_STM32
|