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/nuttx.git
from 85af043d651 Documentation: add nsh boot command reference
new 4cb00df87af arch/arm/rp23xx: Add gSPI driver for the Infineon CYW43439.
new eea880f1acb boards/arm/rp23xx: Add support for the Pimoroni Pico Plus
2 W.
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:
.../rp23xx/boards/pimoroni-pico-plus-2-w/index.rst | 276 ++++++++++++++++++++
.../pimoroni-pico-plus-2-w.jpg | Bin 0 -> 451575 bytes
arch/arm/src/rp23xx/CMakeLists.txt | 4 +
arch/arm/src/rp23xx/Make.defs | 4 +
.../rp2040_cyw43439.c => rp23xx/rp23xx_cyw43439.c} | 278 +++++++++++----------
.../rp2040_cyw43439.h => rp23xx/rp23xx_cyw43439.h} | 31 +--
boards/Kconfig | 21 ++
boards/arm/rp23xx/common/src/CMakeLists.txt | 32 +++
boards/arm/rp23xx/common/src/Make.defs | 7 +
.../common/src/rp23xx_firmware.c} | 8 +-
.../pimoroni-pico-plus-2-w}/CMakeLists.txt | 2 +-
.../pimoroni-pico-plus-2-w}/Kconfig | 24 +-
.../configs/nsh/defconfig | 8 +-
.../configs/usbnsh/defconfig | 6 +-
.../pimoroni-pico-plus-2-w/configs/wifi}/defconfig | 43 ++--
.../include/board.h | 53 ++--
.../include/rp23xx_extra_gpio.h} | 95 +++----
.../include/rp23xx_i2cdev.h | 8 +-
.../include/rp23xx_i2sdev.h | 8 +-
.../include/rp23xx_spidev.h | 8 +-
.../include/rp23xx_spisd.h | 8 +-
.../scripts/Make.defs | 2 +-
.../scripts/memmap_copy_to_ram.ld | 2 +-
.../scripts/memmap_default.ld | 2 +-
.../scripts/memmap_no_flash.ld | 2 +-
.../src/CMakeLists.txt | 21 +-
.../pimoroni-pico-plus-2-w}/src/Make.defs | 57 +++--
.../src/rp23xx_boardinitialize.c | 11 +-
.../pimoroni-pico-plus-2-w}/src/rp23xx_bringup.c | 56 ++++-
.../pimoroni-pico-plus-2-w}/src/rp23xx_buttons.c | 22 +-
.../src/rp23xx_gpio.c | 10 +-
.../src/rp23xx_pico.h | 36 ++-
.../pimoroni-pico-plus-2-w/src/rp23xx_userleds.c} | 81 +++---
33 files changed, 832 insertions(+), 394 deletions(-)
create mode 100644
Documentation/platforms/arm/rp23xx/boards/pimoroni-pico-plus-2-w/index.rst
create mode 100644
Documentation/platforms/arm/rp23xx/boards/pimoroni-pico-plus-2-w/pimoroni-pico-plus-2-w.jpg
copy arch/arm/src/{rp2040/rp2040_cyw43439.c => rp23xx/rp23xx_cyw43439.c} (73%)
copy arch/arm/src/{rp2040/rp2040_cyw43439.h => rp23xx/rp23xx_cyw43439.h} (82%)
copy boards/arm/{rp2040/common/src/rp2040_firmware.c =>
rp23xx/common/src/rp23xx_firmware.c} (97%)
copy boards/arm/{rp2040/raspberrypi-pico-w =>
rp23xx/pimoroni-pico-plus-2-w}/CMakeLists.txt (96%)
copy boards/arm/{rp2040/raspberrypi-pico-w =>
rp23xx/pimoroni-pico-plus-2-w}/Kconfig (56%)
copy boards/arm/rp23xx/{pimoroni-pico-2-plus =>
pimoroni-pico-plus-2-w}/configs/nsh/defconfig (90%)
copy boards/arm/rp23xx/{pimoroni-pico-2-plus =>
pimoroni-pico-plus-2-w}/configs/usbnsh/defconfig (90%)
copy boards/arm/{rp2040/raspberrypi-pico-w/configs/telnet =>
rp23xx/pimoroni-pico-plus-2-w/configs/wifi}/defconfig (75%)
copy boards/arm/rp23xx/{raspberrypi-pico-2 =>
pimoroni-pico-plus-2-w}/include/board.h (69%)
copy boards/arm/{rp2040/raspberrypi-pico-w/include/rp2040_extra_gpio.h =>
rp23xx/pimoroni-pico-plus-2-w/include/rp23xx_extra_gpio.h} (59%)
copy boards/arm/rp23xx/{raspberrypi-pico-2 =>
pimoroni-pico-plus-2-w}/include/rp23xx_i2cdev.h (88%)
copy boards/arm/rp23xx/{xiao-rp2350 =>
pimoroni-pico-plus-2-w}/include/rp23xx_i2sdev.h (88%)
copy boards/arm/rp23xx/{pimoroni-pico-2-plus =>
pimoroni-pico-plus-2-w}/include/rp23xx_spidev.h (88%)
copy boards/arm/rp23xx/{pimoroni-pico-2-plus =>
pimoroni-pico-plus-2-w}/include/rp23xx_spisd.h (90%)
copy boards/arm/rp23xx/{raspberrypi-pico-2 =>
pimoroni-pico-plus-2-w}/scripts/Make.defs (96%)
copy boards/arm/rp23xx/{pimoroni-pico-2-plus =>
pimoroni-pico-plus-2-w}/scripts/memmap_copy_to_ram.ld (99%)
copy boards/arm/rp23xx/{pimoroni-pico-2-plus =>
pimoroni-pico-plus-2-w}/scripts/memmap_default.ld (99%)
copy boards/arm/rp23xx/{pimoroni-pico-2-plus =>
pimoroni-pico-plus-2-w}/scripts/memmap_no_flash.ld (99%)
copy boards/arm/rp23xx/{pimoroni-pico-2-plus =>
pimoroni-pico-plus-2-w}/src/CMakeLists.txt (67%)
copy boards/arm/{rp2040/raspberrypi-pico-w =>
rp23xx/pimoroni-pico-plus-2-w}/src/Make.defs (52%)
copy boards/arm/rp23xx/{pimoroni-pico-2-plus =>
pimoroni-pico-plus-2-w}/src/rp23xx_boardinitialize.c (93%)
copy boards/{risc-v/rp23xx-rv/raspberrypi-pico-2-rv =>
arm/rp23xx/pimoroni-pico-plus-2-w}/src/rp23xx_bringup.c (63%)
copy boards/{risc-v/rp23xx-rv/raspberrypi-pico-2-rv =>
arm/rp23xx/pimoroni-pico-plus-2-w}/src/rp23xx_buttons.c (88%)
copy boards/arm/rp23xx/{pimoroni-pico-2-plus =>
pimoroni-pico-plus-2-w}/src/rp23xx_gpio.c (97%)
copy boards/arm/rp23xx/{raspberrypi-pico-2 =>
pimoroni-pico-plus-2-w}/src/rp23xx_pico.h (55%)
copy boards/{xtensa/esp32/esp32-wrover-kit/src/esp32_userleds.c =>
arm/rp23xx/pimoroni-pico-plus-2-w/src/rp23xx_userleds.c} (66%)