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/28 13:23:50 UTC

[incubator-nuttx] branch master updated (b1a0427 -> fbb3cd6)

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 b1a0427  style/Document: remove unnecessary trailing whitespace
     add fbb3cd6  add simple wm8994 codec driver

No new revisions were added by this update.

Summary of changes:
 arch/arm/src/stm32f7/stm32_rcc.h                   |   28 +-
 arch/arm/src/stm32f7/stm32_sai.c                   |   47 -
 arch/arm/src/stm32f7/stm32f74xx75xx_rcc.c          |    9 +-
 .../configs/{fb => audio}/defconfig                |   46 +-
 .../arm/stm32f7/stm32f746g-disco/include/board.h   |   60 +-
 boards/arm/stm32f7/stm32f746g-disco/src/Makefile   |    6 +-
 .../stm32f7/stm32f746g-disco/src/stm32_bringup.c   |    8 +
 .../stm32f746g-disco/src/stm32_wm8994.c}           |  115 +-
 .../stm32f746g-disco/src/stm32f746g-disco.h        |   60 +-
 drivers/audio/Kconfig                              |   61 +
 drivers/audio/Make.defs                            |   11 +
 drivers/audio/wm8994.c                             | 2011 ++++++++++++++++++++
 drivers/audio/wm8994.h                             | 1635 ++++++++++++++++
 drivers/audio/wm8994_debug.c                       |  543 ++++++
 include/nuttx/audio/wm8994.h                       |  260 +++
 15 files changed, 4712 insertions(+), 188 deletions(-)
 copy boards/arm/stm32f7/stm32f746g-disco/configs/{fb => audio}/defconfig (63%)
 copy boards/arm/{stm32/axoloti/src/stm32_adau1961.c => stm32f7/stm32f746g-disco/src/stm32_wm8994.c} (56%)
 create mode 100644 drivers/audio/wm8994.c
 create mode 100644 drivers/audio/wm8994.h
 create mode 100644 drivers/audio/wm8994_debug.c
 create mode 100644 include/nuttx/audio/wm8994.h