diff options
| author | Damien George | 2018-03-09 17:25:58 +1100 |
|---|---|---|
| committer | Damien George | 2018-03-10 00:59:43 +1100 |
| commit | 58ebeca6a9a172a35b9298a911d450722797c409 (patch) | |
| tree | 06434efb89e6c7a01add2137e817177e89532aea /ports/esp8266/Makefile | |
| parent | ad2a6e538ca008d5e25bb03223ac4b948a340aff (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/Makefile | 1 |
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 \ ) |
