You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by ma...@apache.org on 2020/10/17 13:46:37 UTC

[incubator-nuttx] branch master updated (7284956 -> a0b84ae)

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

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


    from 7284956  Fix nxstyle errors and warnings
     add 609a5fa  arch/: Add the ARCH_SRC directory to the context and clean_context targets
     add 0345b1e  arch/xtensa/src/esp32/Make.defs: Download Espressif's Wireless-3rdparty library.
     add a0b84ae  xtensa/esp32: Add ESP32 WiFi adapter and driver

No new revisions were added by this update.

Summary of changes:
 arch/arm/src/Makefile                              |    6 +-
 arch/avr/src/Makefile                              |    6 +-
 arch/hc/src/Makefile                               |    6 +-
 arch/mips/src/Makefile                             |    6 +-
 arch/misoc/src/Makefile                            |    6 +-
 arch/or1k/src/Makefile                             |    6 +-
 arch/renesas/src/Makefile                          |    6 +-
 arch/risc-v/src/Makefile                           |    6 +-
 arch/sim/src/Makefile                              |    6 +-
 arch/x86/src/Makefile                              |    6 +-
 arch/x86_64/src/Makefile                           |    6 +-
 arch/xtensa/Kconfig                                |    6 +
 arch/xtensa/src/Makefile                           |    6 +-
 arch/xtensa/src/esp32/.gitignore                   |    2 +
 arch/xtensa/src/esp32/Kconfig                      |   37 +
 arch/xtensa/src/esp32/Make.defs                    |   34 +
 arch/xtensa/src/esp32/esp32_wifi_adapter.c         | 4430 ++++++++++++++++++++
 .../src/esp32/esp32_wifi_adapter.h}                |  171 +-
 arch/xtensa/src/esp32/esp32_wlan.c                 | 1431 +++++++
 .../src/esp32/esp32_wlan.h}                        |   38 +-
 arch/xtensa/src/esp32/hardware/esp32_dport.h       |   25 +
 arch/z16/src/Makefile                              |    6 +-
 arch/z80/src/Makefile                              |    2 +-
 arch/z80/src/Makefile.sdccl                        |    4 +
 arch/z80/src/Makefile.sdccw                        |    4 +
 arch/z80/src/Makefile.zdsiil                       |    4 +
 arch/z80/src/Makefile.zdsiiw                       |    4 +
 .../esp32-core/configs/{netnsh => wapi}/defconfig  |   41 +-
 .../xtensa/esp32/esp32-core/scripts/esp32_flash.ld |    2 +
 .../xtensa/esp32/esp32-core/scripts/esp32_rom.ld   |    3 +
 boards/xtensa/esp32/esp32-core/src/esp32_bringup.c |   70 +
 tools/Directories.mk                               |    4 +-
 32 files changed, 6287 insertions(+), 103 deletions(-)
 create mode 100644 arch/xtensa/src/esp32/.gitignore
 create mode 100644 arch/xtensa/src/esp32/esp32_wifi_adapter.c
 copy arch/{arm/src/nrf52/nrf52_ppi.h => xtensa/src/esp32/esp32_wifi_adapter.h} (54%)
 create mode 100644 arch/xtensa/src/esp32/esp32_wlan.c
 copy arch/{arm/src/lc823450/lc823450_lowputc.h => xtensa/src/esp32/esp32_wlan.h} (78%)
 copy boards/xtensa/esp32/esp32-core/configs/{netnsh => wapi}/defconfig (69%)