zephyr/tests/drivers/i2c/i2c_target_api/common/Kconfig
Tom Burdick 88ca215eed i2c: Update API terminology
Updates the API and types to match updated I2C terminology. Replaces master
with controller and slave with target.

Updates all drivers to match the changed macros, types, and API signatures.

Signed-off-by: Tom Burdick <thomas.burdick@intel.com>
2022-06-29 17:51:31 +02:00

20 lines
490 B
Plaintext

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