You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by ac...@apache.org on 2020/11/08 16:05:30 UTC

[incubator-nuttx] branch master updated (b23bca5 -> b9d4401)

This is an automated email from the ASF dual-hosted git repository.

acassis pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git.


    from b23bca5  libcxx: Update 0001-libcxx-Port-to-NuttX-https-nuttx.apache.org-RTOS.patch
     add b9d4401  xtensa/esp32: Watchdog support (MWDTs)

No new revisions were added by this update.

Summary of changes:
 arch/xtensa/src/esp32/Kconfig                      |   45 +-
 arch/xtensa/src/esp32/Make.defs                    |    8 +
 arch/xtensa/src/esp32/esp32_tim_lowerhalf.c        |    2 +-
 arch/xtensa/src/esp32/esp32_wtd.c                  | 1006 ++++++++++++++++++++
 arch/xtensa/src/esp32/esp32_wtd.h                  |  106 +++
 arch/xtensa/src/esp32/esp32_wtd_lowerhalf.c        |  718 ++++++++++++++
 .../src/esp32/esp32_wtd_lowerhalf.h}               |   31 +-
 arch/xtensa/src/esp32/hardware/esp32_rtccntl.h     |   22 +-
 arch/xtensa/src/esp32/hardware/esp32_soc.h         |    2 +-
 arch/xtensa/src/esp32/hardware/esp32_tim.h         |   19 +
 .../esp32-core/configs/{pm => watchdog}/defconfig  |    9 +-
 boards/xtensa/esp32/esp32-core/src/Makefile        |    6 +
 boards/xtensa/esp32/esp32-core/src/esp32-core.h    |   13 +-
 boards/xtensa/esp32/esp32-core/src/esp32_bringup.c |   60 +-
 boards/xtensa/esp32/esp32-core/src/esp32_timer.c   |   74 +-
 .../esp32/esp32-core/src/esp32_wtd.c}              |   87 +-
 16 files changed, 2066 insertions(+), 142 deletions(-)
 create mode 100644 arch/xtensa/src/esp32/esp32_wtd.c
 create mode 100644 arch/xtensa/src/esp32/esp32_wtd.h
 create mode 100644 arch/xtensa/src/esp32/esp32_wtd_lowerhalf.c
 copy arch/{renesas/src/rx65n/chip.h => xtensa/src/esp32/esp32_wtd_lowerhalf.h} (80%)
 copy boards/xtensa/esp32/esp32-core/configs/{pm => watchdog}/defconfig (90%)
 copy boards/{arm/stm32f0l0g0/nucleo-l073rz/src/stm32_mfrc522.c => xtensa/esp32/esp32-core/src/esp32_wtd.c} (56%)