diff options
| author | Radomir Dopieralski | 2016-06-07 21:40:56 +0200 |
|---|---|---|
| committer | Paul Sokolovsky | 2016-08-19 21:19:59 +0300 |
| commit | 8e7dfea803f618beaa2ad976dff0b196e449d5d9 (patch) | |
| tree | 93eb8f7dfed421dec4cfc4c187ab0d5fea55522a /esp8266/Makefile | |
| parent | 49dd532180282f24ad31daf7f4f661722d4f9b16 (diff) | |
esp8266/modpybhspi: Add a HSPI module for hardware SPI support
This module uses ESP8266's SPI hardware, which allows much higher
speeds. It uses a library from
https://github.com/MetalPhreak/ESP8266_SPI_Driver
Diffstat (limited to 'esp8266/Makefile')
| -rw-r--r-- | esp8266/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/esp8266/Makefile b/esp8266/Makefile index ea9c7eb87..22591f209 100644 --- a/esp8266/Makefile +++ b/esp8266/Makefile @@ -79,6 +79,7 @@ SRC_C = \ modpybadc.c \ modpybuart.c \ modpybspi.c \ + modpybhspi.c \ modesp.c \ modnetwork.c \ modutime.c \ @@ -89,6 +90,7 @@ SRC_C = \ $(BUILD)/frozen.c \ fatfs_port.c \ axtls_helpers.c \ + hspi.c \ $(SRC_MOD) STM_SRC_C = $(addprefix stmhal/,\ |
