You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by xi...@apache.org on 2023/01/10 18:00:47 UTC

[nuttx] branch master updated (07342f7957 -> 2b7d8981e2)

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 07342f7957 xtensa/esp32: SPI support to configure as R/W/RW mode
     add c8dd4b068d arch/xtensa/esp32s3: Add missing registers and definitions
     add 24995f6918 arch/xtensa/esp32s3: Add RTC GPIOs configuration functions
     add 2b7d8981e2 arch/xtensa/esp32s3: Add initial support for touch pad polling

No new revisions were added by this update.

Summary of changes:
 arch/xtensa/src/esp32s3/Make.defs                  |    6 +
 arch/xtensa/src/esp32s3/esp32s3_rtc_gpio.c         |  295 +++
 arch/xtensa/src/esp32s3/esp32s3_rtc_gpio.h         |  579 +++++
 arch/xtensa/src/esp32s3/esp32s3_touch.c            |  418 ++++
 .../esp32_touch.h => esp32s3/esp32s3_touch.h}      |  105 +-
 arch/xtensa/src/esp32s3/esp32s3_touch_lowerhalf.h  | 2538 ++++++++++++++++++++
 arch/xtensa/src/esp32s3/hardware/esp32s3_pinmap.h  |    5 +
 .../hardware/esp32s3_rtc_io.h}                     |  147 +-
 arch/xtensa/src/esp32s3/hardware/esp32s3_sens.h    | 1899 +++++++++++++++
 arch/xtensa/src/esp32s3/hardware/esp32s3_touch.h   |  251 ++
 10 files changed, 6075 insertions(+), 168 deletions(-)
 create mode 100644 arch/xtensa/src/esp32s3/esp32s3_rtc_gpio.c
 create mode 100644 arch/xtensa/src/esp32s3/esp32s3_rtc_gpio.h
 create mode 100644 arch/xtensa/src/esp32s3/esp32s3_touch.c
 copy arch/xtensa/src/{esp32/esp32_touch.h => esp32s3/esp32s3_touch.h} (56%)
 create mode 100644 arch/xtensa/src/esp32s3/esp32s3_touch_lowerhalf.h
 copy arch/xtensa/src/{esp32s2/hardware/esp32s2_rtc_io.h => esp32s3/hardware/esp32s3_rtc_io.h} (95%)
 create mode 100644 arch/xtensa/src/esp32s3/hardware/esp32s3_sens.h
 create mode 100644 arch/xtensa/src/esp32s3/hardware/esp32s3_touch.h