This is an automated email from the ASF dual-hosted git repository.
xiaoxiang781216 pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx.git
from 6a71c893805 Documentation/grep: Add grep command documentation
new a25fbba5a5c arch/arm/rtl8721dx: add shared Ameba watchdog driver
new ceea7422396 arch/arm/rtl8720f: add watchdog driver support
new 15678acf6f6 arch/arm/rtl8721f: add watchdog driver support
The 3 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:
.../arm/rtl8720f/boards/rtl8720f_evb/index.rst | 13 +
.../arm/rtl8721dx/boards/pke8721daf/index.rst | 13 +
.../arm/rtl8721f/boards/rtl8721f_evb/index.rst | 13 +
arch/arm/src/common/ameba/Kconfig | 15 +
arch/arm/src/common/ameba/ameba_wdg.c | 576 +++++++++++++++++++++
.../arm/src/common/ameba/ameba_wdg.h | 27 +-
arch/arm/src/rtl8720f/CMakeLists.txt | 4 +
arch/arm/src/rtl8720f/Make.defs | 4 +
arch/arm/src/rtl8720f/ameba_wdg_chip.h | 75 +++
arch/arm/src/rtl8721dx/CMakeLists.txt | 4 +
arch/arm/src/rtl8721dx/Make.defs | 4 +
arch/arm/src/rtl8721dx/ameba_wdg_chip.h | 75 +++
arch/arm/src/rtl8721f/CMakeLists.txt | 4 +
arch/arm/src/rtl8721f/Make.defs | 4 +
arch/arm/src/rtl8721f/ameba_wdg_chip.h | 75 +++
.../rtl8720f_evb/configs/{spi => wdg}/defconfig | 8 +-
.../arm/rtl8720f/rtl8720f_evb/src/CMakeLists.txt | 7 +-
boards/arm/rtl8720f/rtl8720f_evb/src/Makefile | 6 +-
.../rtl8720f/rtl8720f_evb/src/rtl8720f_bringup.c | 10 +
.../rtl8720f_evb/src/rtl8720f_rtl8720f_evb.h | 13 +
.../src/{rtl8720f_rtc.c => rtl8720f_wdg.c} | 23 +-
.../pke8721daf/configs/{rtc => wdg}/defconfig | 8 +-
boards/arm/rtl8721dx/pke8721daf/src/CMakeLists.txt | 7 +-
boards/arm/rtl8721dx/pke8721daf/src/Makefile | 9 +
.../rtl8721dx/pke8721daf/src/rtl8721dx_bringup.c | 10 +
.../pke8721daf/src/rtl8721dx_pke8721daf.h | 13 +
.../src/{rtl8721dx_rtc.c => rtl8721dx_wdg.c} | 23 +-
.../rtl8721f_evb/configs/{gpio => wdg}/defconfig | 8 +-
.../arm/rtl8721f/rtl8721f_evb/src/CMakeLists.txt | 7 +-
boards/arm/rtl8721f/rtl8721f_evb/src/Makefile | 6 +-
.../rtl8721f/rtl8721f_evb/src/rtl8721f_bringup.c | 10 +
.../rtl8721f_evb/src/rtl8721f_rtl8721f_evb.h | 13 +
.../src/{rtl8721f_rtc.c => rtl8721f_wdg.c} | 23 +-
tools/nxstyle.c | 1 +
34 files changed, 1043 insertions(+), 68 deletions(-)
create mode 100644 arch/arm/src/common/ameba/ameba_wdg.c
copy include/nuttx/sensors/adxl362.h => arch/arm/src/common/ameba/ameba_wdg.h
(72%)
create mode 100644 arch/arm/src/rtl8720f/ameba_wdg_chip.h
create mode 100644 arch/arm/src/rtl8721dx/ameba_wdg_chip.h
create mode 100644 arch/arm/src/rtl8721f/ameba_wdg_chip.h
copy boards/arm/rtl8720f/rtl8720f_evb/configs/{spi => wdg}/defconfig (89%)
copy boards/arm/rtl8720f/rtl8720f_evb/src/{rtl8720f_rtc.c => rtl8720f_wdg.c}
(78%)
copy boards/arm/rtl8721dx/pke8721daf/configs/{rtc => wdg}/defconfig (90%)
copy boards/arm/rtl8721dx/pke8721daf/src/{rtl8721dx_rtc.c => rtl8721dx_wdg.c}
(78%)
copy boards/arm/rtl8721f/rtl8721f_evb/configs/{gpio => wdg}/defconfig (89%)
copy boards/arm/rtl8721f/rtl8721f_evb/src/{rtl8721f_rtc.c => rtl8721f_wdg.c}
(78%)