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 2021/03/24 19:01:36 UTC

[incubator-nuttx] branch master updated (2115966 -> 59313c8)

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 2115966  stm32h7:SPI Fix 16 bit SPI mode
     add 59313c8  xtensa/esp32: Adds oneshot timer driver.

No new revisions were added by this update.

Summary of changes:
 arch/xtensa/src/esp32/Kconfig                      |  13 +
 arch/xtensa/src/esp32/Make.defs                    |   7 +
 arch/xtensa/src/esp32/esp32_oneshot.c              | 449 +++++++++++++++++++++
 .../src/esp32/esp32_oneshot.h}                     | 111 ++---
 .../src/esp32/esp32_oneshot_lowerhalf.c}           | 261 +++++++-----
 .../esp32/common/include/esp32_board_oneshot.h     |  46 +--
 boards/xtensa/esp32/common/src/Make.defs           |   8 +-
 boards/xtensa/esp32/common/src/esp32_board_tim.c   | 121 ------
 .../esp32_board_tim.h => src/esp32_oneshot.c}      |  62 +--
 .../configs/{timer => oneshot}/defconfig           |   4 +
 .../xtensa/esp32/esp32-devkitc/src/esp32-devkitc.h |  12 +
 .../xtensa/esp32/esp32-devkitc/src/esp32_bringup.c |  63 ++-
 .../configs/oneshot}/defconfig                     |   9 +-
 .../esp32-ethernet-kit/src/esp32-ethernet-kit.h    |  12 +
 .../esp32/esp32-ethernet-kit/src/esp32_bringup.c   |  63 ++-
 .../configs/oneshot}/defconfig                     |   9 +-
 .../esp32/esp32-wrover-kit/src/esp32-wrover-kit.h  |  12 +
 .../esp32/esp32-wrover-kit/src/esp32_bringup.c     |  63 ++-
 18 files changed, 965 insertions(+), 360 deletions(-)
 create mode 100644 arch/xtensa/src/esp32/esp32_oneshot.c
 copy arch/{arm/src/stm32h7/stm32_oneshot.h => xtensa/src/esp32/esp32_oneshot.h} (68%)
 copy arch/{arm/src/stm32h7/stm32_oneshot_lowerhalf.c => xtensa/src/esp32/esp32_oneshot_lowerhalf.c} (50%)
 copy arch/risc-v/src/bl602/bl602_glb.h => boards/xtensa/esp32/common/include/esp32_board_oneshot.h (76%)
 delete mode 100644 boards/xtensa/esp32/common/src/esp32_board_tim.c
 rename boards/xtensa/esp32/common/{include/esp32_board_tim.h => src/esp32_oneshot.c} (65%)
 copy boards/xtensa/esp32/esp32-devkitc/configs/{timer => oneshot}/defconfig (94%)
 copy boards/xtensa/esp32/{esp32-devkitc/configs/timer => esp32-ethernet-kit/configs/oneshot}/defconfig (89%)
 copy boards/xtensa/esp32/{esp32-devkitc/configs/timer => esp32-wrover-kit/configs/oneshot}/defconfig (89%)