This is an automated email from the ASF dual-hosted git repository. jerpelea pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git
from 8ab87c582b arch/mcx-nxxx: Add GPIO interrupt support new 59fe350708 arch/risc-v/espressif: Add I2C slave support new 939b31b97e boards/risc-v/esp32[c3|c6|h2]: Add I2C slave support new 7658c39304 documentation/esp32[c3|c6|h2]: Add I2C slave support new 4d89d7186e arch/xtensa/esp32[s2|s3]: Add I2C slave support new 06ef4a8084 boards/xtensa/esp32[s2|s3]: Add I2C slave support new c7702894fe documentation/esp32[s2|s3]: Add I2C slave support The 6 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: .../esp32c3/boards/esp32c3-generic/index.rst | 17 + Documentation/platforms/risc-v/esp32c3/index.rst | 2 +- .../esp32c6/boards/esp32c6-devkitc/index.rst | 17 + .../esp32c6/boards/esp32c6-devkitm/index.rst | 17 + Documentation/platforms/risc-v/esp32c6/index.rst | 10 +- .../risc-v/esp32h2/boards/esp32h2-devkit/index.rst | 17 + Documentation/platforms/risc-v/esp32h2/index.rst | 10 +- Documentation/platforms/xtensa/esp32/index.rst | 2 +- .../esp32s2/boards/esp32s2-kaluga-1/index.rst | 17 + .../esp32s2/boards/esp32s2-saola-1/index.rst | 17 + Documentation/platforms/xtensa/esp32s2/index.rst | 2 +- .../xtensa/esp32s3/boards/esp32s3-devkit/index.rst | 18 + Documentation/platforms/xtensa/esp32s3/index.rst | 2 +- arch/risc-v/src/common/espressif/Kconfig | 49 +- arch/risc-v/src/common/espressif/Make.defs | 5 +- arch/risc-v/src/common/espressif/esp_i2c.c | 12 +- arch/risc-v/src/common/espressif/esp_i2c.h | 4 +- arch/risc-v/src/common/espressif/esp_i2c_slave.c | 957 +++++++++++++++++++++ .../espressif/{esp_i2c.h => esp_i2c_slave.h} | 39 +- arch/xtensa/src/common/espressif/Kconfig | 19 +- arch/xtensa/src/common/espressif/Make.defs | 4 + arch/xtensa/src/esp32/Kconfig | 54 +- arch/xtensa/src/esp32/Make.defs | 2 +- arch/xtensa/src/esp32/esp32_i2c.c | 4 +- arch/xtensa/src/esp32/esp32_i2c.h | 4 +- arch/xtensa/src/esp32/hal.mk | 2 + arch/xtensa/src/esp32s2/Kconfig | 56 +- arch/xtensa/src/esp32s2/Make.defs | 2 +- arch/xtensa/src/esp32s2/esp32s2_i2c.c | 4 +- arch/xtensa/src/esp32s2/esp32s2_i2c.h | 4 +- arch/xtensa/src/esp32s2/hal.mk | 2 + arch/xtensa/src/esp32s3/Kconfig | 54 +- arch/xtensa/src/esp32s3/Make.defs | 2 +- arch/xtensa/src/esp32s3/esp32s3_i2c.c | 4 +- arch/xtensa/src/esp32s3/esp32s3_i2c.h | 4 +- arch/xtensa/src/esp32s3/hal.mk | 2 + boards/risc-v/esp32c3/common/src/esp_board_i2c.c | 46 +- boards/risc-v/esp32c6/common/src/esp_board_i2c.c | 46 +- boards/risc-v/esp32h2/common/src/esp_board_i2c.c | 46 +- .../esp32s2-saola-1/src/esp32s2_board_i2c.c | 11 +- .../xtensa/esp32s3/common/src/esp32s3_board_i2c.c | 54 +- 41 files changed, 1542 insertions(+), 98 deletions(-) create mode 100644 arch/risc-v/src/common/espressif/esp_i2c_slave.c copy arch/risc-v/src/common/espressif/{esp_i2c.h => esp_i2c_slave.h} (73%)