1# SPDX-License-Identifier: Apache-2.0 2 3mainmenu "SPI Loopback Test" 4 5source "Kconfig.zephyr" 6 7config SPI_LOOPBACK_MODE_LOOP 8 bool "Configure the SPI in LOOP mode, so that no extra wiring is needed" 9 10config SPI_LARGE_BUFFER_SIZE 11 int "Large buffer size" 12 default 8192 13 14if SOC_SERIES_STM32H7X 15 16config SPI_LOOPBACK_16BITS_FRAMES 17 bool "Use 16 bits frames for tests" 18 19config DT_DEFINED_NOCACHE 20 bool "Enable this if nocache regions are defined in devicetree" 21 22if DT_DEFINED_NOCACHE 23 24config DT_DEFINED_NOCACHE_NAME 25 string "Name of the nocache region defined in devicetree (capitals)" 26 27endif # DT_DEFINED_NOCACHE 28 29endif # SOC_SERIES_STM32H7X 30