rp2/boards/SPARKFUN_IOTNODE_LORAWAN_RP2350: Add SD card support.

The IOTNODE_LORAWAN_RP2350 has an SD card and we want users to be able to
`import sdcard` without copying `sdcard.py` over to their board.

Signed-off-by: Malcolm McKellips <malcolm.mckellips@sparkfun.com>
This commit is contained in:
Malcolm McKellips
2025-03-17 14:33:59 -06:00
committed by Damien George
parent 1e92bdd206
commit 93a8c53d64
2 changed files with 6 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
include("$(PORT_DIR)/boards/manifest.py")
require("sdcard")

View File

@@ -5,3 +5,6 @@ set(PICO_BOARD_HEADER_DIRS ${MICROPY_PORT_DIR}/boards/${MICROPY_BOARD})
set(PICO_BOARD "sparkfun_iotnode_lorawan_rp2350")
set(PICO_PLATFORM "rp2350")
# Board specific version of the frozen manifest
set(MICROPY_FROZEN_MANIFEST ${MICROPY_BOARD_DIR}/manifest.py)