Rename SPI test to spi_controller_peripheral. Remove iclusive language from that test. Signed-off-by: Sebastian Głąb <sebastian.glab@nordicsemi.no>
14 lines
404 B
Text
14 lines
404 B
Text
# Copyright (c) 2024 Nordic Semiconductor ASA
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config TESTED_SPI_MODE
|
|
int "SPI mode"
|
|
default 0
|
|
help
|
|
SPI mode value (clock polarity and phase) used in the test.
|
|
0: CPOL 0 (Active high), CPHA 0 (leading)
|
|
1: CPOL 0 (Active high), CPHA 1 (trailing)
|
|
2: CPOL 1 (Active low), CPHA 0 (leading)
|
|
3: CPOL 1 (Active low), CPHA 1 (trailing)
|
|
|
|
source "Kconfig.zephyr"
|