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	help
13	  This option enables the I2C driver for Infineon XMC4 family.
14
15config I2C_INFINEON_XMC4_TARGET_BUF
16	int "I2C Target data buffer length"
17	depends on I2C_INFINEON_XMC4
18	range 1 1024
19	default 64
20	help
21	  Buffer to receive data as an I2C Target.
22