aboutsummaryrefslogtreecommitdiff
path: root/ports/esp8266/Makefile
diff options
context:
space:
mode:
authorDamien George2018-03-09 17:25:58 +1100
committerDamien George2018-03-10 00:59:43 +1100
commit58ebeca6a9a172a35b9298a911d450722797c409 (patch)
tree06434efb89e6c7a01add2137e817177e89532aea /ports/esp8266/Makefile
parentad2a6e538ca008d5e25bb03223ac4b948a340aff (diff)
drivers/bus: Pull out software SPI implementation to dedicated driver.
This patch takes the software SPI implementation from extmod/machine_spi.c and moves it to a dedicated file in drivers/bus/softspi.c. This allows the SPI driver to be used independently of the uPy runtime, making it a more general component.
Diffstat (limited to 'ports/esp8266/Makefile')
-rw-r--r--ports/esp8266/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/ports/esp8266/Makefile b/ports/esp8266/Makefile
index 9d6e502c7..716f18d6a 100644
--- a/ports/esp8266/Makefile
+++ b/ports/esp8266/Makefile
@@ -130,6 +130,7 @@ LIB_SRC_C += \
endif
DRIVERS_SRC_C = $(addprefix drivers/,\
+ bus/softspi.c \
dht/dht.c \
)