This is an automated email from the ASF dual-hosted git repository.
xiaoxiang pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx.git
from 63375bf9cd BL808: Replace courier with M0 interrupt controller
new dda55419f9 esp32[c3|c6|h2]: Add I2C master support
new 43a4f2fbea esp32[c3|c6|h2]: Add BMP180 sensor support
The 2 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 | 19 +
Documentation/platforms/risc-v/esp32c3/index.rst | 2 +-
.../esp32c6/boards/esp32c6-devkitc/index.rst | 19 +
.../esp32c6/boards/esp32c6-devkitm/index.rst | 19 +
Documentation/platforms/risc-v/esp32c6/index.rst | 2 +-
.../risc-v/esp32h2/boards/esp32h2-devkit/index.rst | 19 +
Documentation/platforms/risc-v/esp32h2/index.rst | 2 +-
arch/risc-v/src/common/espressif/Kconfig | 61 +
arch/risc-v/src/common/espressif/Make.defs | 4 +
arch/risc-v/src/common/espressif/esp_i2c.c | 1607 ++++++++++++++++++++
arch/risc-v/src/common/espressif/esp_i2c.h | 91 ++
arch/risc-v/src/esp32c3/hal_esp32c3.mk | 2 +
arch/risc-v/src/esp32c6/hal_esp32c6.mk | 2 +
arch/risc-v/src/esp32h2/hal_esp32h2.mk | 2 +
.../esp32c3/common/include/esp_board_bmp180.h | 74 +
.../risc-v/esp32c3/common/include/esp_board_i2c.h | 74 +
boards/risc-v/esp32c3/common/src/Make.defs | 8 +
.../risc-v/esp32c3/common/src/esp_board_bmp180.c | 86 ++
boards/risc-v/esp32c3/common/src/esp_board_i2c.c | 82 +
.../esp32c3-generic/configs/bmp180/defconfig | 50 +
.../esp32c3/esp32c3-generic/configs/i2c/defconfig | 52 +
.../esp32c3/esp32c3-generic/src/esp32c3_bringup.c | 25 +
.../esp32c6/common/include/esp_board_bmp180.h | 73 +
.../risc-v/esp32c6/common/include/esp_board_i2c.h | 74 +
boards/risc-v/esp32c6/common/src/Make.defs | 8 +
.../risc-v/esp32c6/common/src/esp_board_bmp180.c | 86 ++
boards/risc-v/esp32c6/common/src/esp_board_i2c.c | 82 +
.../esp32c6-devkitc/configs/bmp180/defconfig | 52 +
.../esp32c6/esp32c6-devkitc/configs/i2c/defconfig | 54 +
.../esp32c6/esp32c6-devkitc/src/esp32c6_bringup.c | 25 +
.../esp32c6-devkitm/configs/bmp180/defconfig | 52 +
.../esp32c6/esp32c6-devkitm/configs/i2c/defconfig | 54 +
.../esp32c6/esp32c6-devkitm/src/esp32c6_bringup.c | 25 +
.../esp32h2/common/include/esp_board_bmp180.h | 73 +
.../risc-v/esp32h2/common/include/esp_board_i2c.h | 74 +
boards/risc-v/esp32h2/common/src/Make.defs | 8 +
.../risc-v/esp32h2/common/src/esp_board_bmp180.c | 85 ++
boards/risc-v/esp32h2/common/src/esp_board_i2c.c | 90 ++
.../esp32h2-devkit/configs/bmp180/defconfig | 51 +
.../esp32h2/esp32h2-devkit/configs/i2c/defconfig | 54 +
.../esp32h2/esp32h2-devkit/src/esp32h2_bringup.c | 25 +
41 files changed, 3344 insertions(+), 3 deletions(-)
create mode 100644 arch/risc-v/src/common/espressif/esp_i2c.c
create mode 100644 arch/risc-v/src/common/espressif/esp_i2c.h
create mode 100644 boards/risc-v/esp32c3/common/include/esp_board_bmp180.h
create mode 100644 boards/risc-v/esp32c3/common/include/esp_board_i2c.h
create mode 100644 boards/risc-v/esp32c3/common/src/esp_board_bmp180.c
create mode 100644 boards/risc-v/esp32c3/common/src/esp_board_i2c.c
create mode 100644
boards/risc-v/esp32c3/esp32c3-generic/configs/bmp180/defconfig
create mode 100644 boards/risc-v/esp32c3/esp32c3-generic/configs/i2c/defconfig
create mode 100644 boards/risc-v/esp32c6/common/include/esp_board_bmp180.h
create mode 100644 boards/risc-v/esp32c6/common/include/esp_board_i2c.h
create mode 100644 boards/risc-v/esp32c6/common/src/esp_board_bmp180.c
create mode 100644 boards/risc-v/esp32c6/common/src/esp_board_i2c.c
create mode 100644
boards/risc-v/esp32c6/esp32c6-devkitc/configs/bmp180/defconfig
create mode 100644 boards/risc-v/esp32c6/esp32c6-devkitc/configs/i2c/defconfig
create mode 100644
boards/risc-v/esp32c6/esp32c6-devkitm/configs/bmp180/defconfig
create mode 100644 boards/risc-v/esp32c6/esp32c6-devkitm/configs/i2c/defconfig
create mode 100644 boards/risc-v/esp32h2/common/include/esp_board_bmp180.h
create mode 100644 boards/risc-v/esp32h2/common/include/esp_board_i2c.h
create mode 100644 boards/risc-v/esp32h2/common/src/esp_board_bmp180.c
create mode 100644 boards/risc-v/esp32h2/common/src/esp_board_i2c.c
create mode 100644
boards/risc-v/esp32h2/esp32h2-devkit/configs/bmp180/defconfig
create mode 100644 boards/risc-v/esp32h2/esp32h2-devkit/configs/i2c/defconfig