1# I2C Target configuration options 2 3# Copyright (c) 2017 BayLibre, SAS 4# SPDX-License-Identifier: Apache-2.0 5 6# 7# I2C options 8# 9menuconfig I2C_TARGET 10 bool "I2C Target Drivers" 11 help 12 Enable I2C Target Driver Configuration 13 14if I2C_TARGET 15 16config I2C_TARGET_INIT_PRIORITY 17 int "Init priority" 18 default 60 19 help 20 I2C Target device driver initialization priority. 21 22config I2C_TARGET_BUFFER_MODE 23 bool "I2C target driver for buffer mode [EXPERIMENTAL]" 24 select EXPERIMENTAL 25 help 26 This is an option to enable buffer mode. 27 28source "drivers/i2c/target/Kconfig.eeprom" 29 30endif # I2C_TARGET 31