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 a7a81b5  libc: Replace all [nx]sem_xxx with _SEM_XXX
     new 171cc38  arch: samd5e5 : Add watchdog timer drivers.
     new f5912b5  arch: samd5e5 : Oneshot, freerun and tickless available 
support. All support runs on Timer/Counter (TC). Some fixes in external 
interrupt controller (EIC) and clockconfig.

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:
 arch/arm/Kconfig                                   |    1 +
 arch/arm/src/samd5e5/Kconfig                       |   72 ++
 arch/arm/src/samd5e5/hardware/sam_eic.h            |   40 +-
 arch/arm/src/samd5e5/hardware/sam_tc.h             |  479 ++++++++
 arch/arm/src/samd5e5/hardware/sam_wdt.h            |    2 +-
 arch/arm/src/samd5e5/sam_clockconfig.c             |  439 ++++----
 arch/arm/src/samd5e5/sam_eic.c                     |   35 +-
 arch/arm/src/samd5e5/sam_eic.h                     |    2 +
 arch/arm/src/{sama5 => samd5e5}/sam_freerun.c      |  128 +--
 arch/arm/src/{samv7 => samd5e5}/sam_freerun.h      |   63 +-
 arch/arm/src/{sama5 => samd5e5}/sam_oneshot.c      |  153 +--
 arch/arm/src/{samv7 => samd5e5}/sam_oneshot.h      |   69 +-
 .../src/{sama5 => samd5e5}/sam_oneshot_lowerhalf.c |   47 +-
 arch/arm/src/samd5e5/sam_port.h                    |   15 +-
 arch/arm/src/samd5e5/sam_tc.c                      | 1143 ++++++++++++++++++++
 .../src/{sam34/sam4cm_tc.h => samd5e5/sam_tc.h}    |  162 +--
 .../sam4cm_tickless.c => samd5e5/sam_tickless.c}   |  179 +--
 arch/arm/src/samd5e5/sam_timerisr.c                |    4 +-
 boards/arm/samd5e5/metro-m4/include/board.h        |   15 +
 19 files changed, 2329 insertions(+), 719 deletions(-)
 create mode 100644 arch/arm/src/samd5e5/hardware/sam_tc.h
 copy arch/arm/src/{sama5 => samd5e5}/sam_freerun.c (59%)
 copy arch/arm/src/{samv7 => samd5e5}/sam_freerun.h (69%)
 copy arch/arm/src/{sama5 => samd5e5}/sam_oneshot.c (71%)
 copy arch/arm/src/{samv7 => samd5e5}/sam_oneshot.h (77%)
 copy arch/arm/src/{sama5 => samd5e5}/sam_oneshot_lowerhalf.c (84%)
 create mode 100644 arch/arm/src/samd5e5/sam_tc.c
 copy arch/arm/src/{sam34/sam4cm_tc.h => samd5e5/sam_tc.h} (71%)
 copy arch/arm/src/{sam34/sam4cm_tickless.c => samd5e5/sam_tickless.c} (64%)

Reply via email to