1# Copyright (c) 2024 Nordic Semiconductor ASA 2# SPDX-License-Identifier: Apache-2.0 3 4config TESTED_SPI_MODE 5 int "SPI mode" 6 default 0 7 help 8 SPI mode value (clock polarity and phase) used in the test. 9 0: CPOL 0 (Active high), CPHA 0 (leading) 10 1: CPOL 0 (Active high), CPHA 1 (trailing) 11 2: CPOL 1 (Active low), CPHA 0 (leading) 12 3: CPOL 1 (Active low), CPHA 1 (trailing) 13 14config PREALLOC_BUFFERS 15 bool "Preallocate buffers" 16 default y 17 help 18 Preallocate buffers used for transaction 19 using `memory-region` property. 20 21source "Kconfig.zephyr" 22