From 0ee160e7c06ddc6641257d5ebb88d006e731a3aa Mon Sep 17 00:00:00 2001 From: Damien George Date: Wed, 18 Dec 2024 14:49:56 +1100 Subject: [PATCH] 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 --- extmod/extmod.mk | 1 + 1 file changed, 1 insertion(+) 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)