Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions drivers/i2c/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ zephyr_library_sources_ifdef(CONFIG_I2C_NUMAKER i2c_numaker.c)
zephyr_library_sources_ifdef(CONFIG_I2C_OMAP i2c_omap.c)
zephyr_library_sources_ifdef(CONFIG_I2C_RCAR i2c_rcar.c)
zephyr_library_sources_ifdef(CONFIG_I2C_RENESAS_RA_IIC i2c_renesas_ra_iic.c)
zephyr_library_sources_ifdef(CONFIG_I2C_RPI_PICO_PIO i2c_rpi_pico_pio.c)
zephyr_library_sources_ifdef(CONFIG_I2C_RV32M1_LPI2C i2c_rv32m1_lpi2c.c)
zephyr_library_sources_ifdef(CONFIG_I2C_SAM0 i2c_sam0.c)
zephyr_library_sources_ifdef(CONFIG_I2C_SAM_TWI i2c_sam_twi.c)
Expand Down
8 changes: 8 additions & 0 deletions drivers/i2c/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,14 @@ config I2C_RV32M1_LPI2C
help
Enable the RV32M1 LPI2C driver.

config I2C_RPI_PICO_PIO
bool "Raspberry Pi Pico PIO based I2C driver"
default y
depends on DT_HAS_RASPBERRYPI_PICO_PIO_I2C_ENABLED
select PICOSDK_USE_PIO
help
Enable the Raspberry Pi Pico PIO I2C driver.

config GPIO_I2C_SWITCH
bool "GPIO controlled I2C bus switch"
default y
Expand Down
Loading
Loading