zephyr/tests/drivers/i2c/i2c_slave_api/common/Kconfig
Peter Bigot 2a9b9b74bc tests: i2c_slave_api: update to current standard terminology
Zephyr does not currently allow deviation from standard terminology
for a technology even if it is non-inclusive, until the corresponding
standards body has confirmed intent to change that terminology.  The
terms used in a previous attempt to be inclusive do not match the
expected forthcoming standard terms.

Revert to standard terms until the new ones have been announced and
the switch made throughout Zephyr.

Signed-off-by: Peter Bigot <peter.bigot@nordicsemi.no>
2021-02-09 13:59:17 -05:00

20 lines
489 B
Plaintext

# I2C slave tests common configuration options
# Copyright (c) 2017 BayLibre, SAS
# SPDX-License-Identifier: Apache-2.0
config I2C_VIRTUAL
bool "Virtual I2C Driver for Slave development"
depends on I2C
help
This driver exposes a virtual I2C driver used to debug virtual
I2C slave drivers.
config I2C_VIRTUAL_NAME
string "Virtual Port device name"
default "I2C_VIRTUAL"
depends on I2C_VIRTUAL
config APP_DUAL_ROLE_I2C
bool "Enable test with combined master/slave behavior"