summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien George <damien@micropython.org>2024-12-18 14:49:56 +1100
committerDamien George <damien@micropython.org>2025-04-08 23:52:12 +1000
commit0ee160e7c06ddc6641257d5ebb88d006e731a3aa (patch)
tree03585420fa66cbb2a6419aa166d0e3fe6fa30dac
parent91cff8e4f10ea665c5f3f4b16d62c98d6ca22037 (diff)
extmod/extmod.mk: Add cyw43_spi.c to list of sources.
This file is part of the updated cyw43-driver. It will only be used if `CYW43_USE_SPI` is enabled. Signed-off-by: Damien George <damien@micropython.org>
-rw-r--r--extmod/extmod.mk1
1 files changed, 1 insertions, 0 deletions
diff --git a/extmod/extmod.mk b/extmod/extmod.mk
index a510f3c54..d2fe2acba 100644
--- a/extmod/extmod.mk
+++ b/extmod/extmod.mk
@@ -458,6 +458,7 @@ SRC_THIRDPARTY_C += $(addprefix $(CYW43_DIR)/src/,\
cyw43_lwip.c \
cyw43_ll.c \
cyw43_sdio.c \
+ cyw43_spi.c \
cyw43_stats.c \
)
ifeq ($(MICROPY_PY_BLUETOOTH),1)