1# Infineon XMC4 I2C configuration options
2
3# Copyright (c) 2023 Cypress Semiconductor Corporation (an Infineon company) or
4# an affiliate of Cypress Semiconductor Corporation
5#
6# SPDX-License-Identifier: Apache-2.0
7
8menuconfig I2C_INFINEON_XMC4
9	bool "Infineon XMC4 I2C driver"
10	default y
11	depends on DT_HAS_INFINEON_XMC4XXX_I2C_ENABLED
12	select PINCTRL
13	help
14	  This option enables the I2C driver for Infineon XMC4 family.
15
16config I2C_INFINEON_XMC4_TARGET_BUF
17	int "I2C Target data buffer length"
18	depends on I2C_INFINEON_XMC4
19	range 1 1024
20	default 64
21	help
22	  Buffer to receive data as an I2C Target.
23