diff options
author | Damien George <damien@micropython.org> | 2023-10-26 15:20:03 +1100 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2023-10-26 17:40:22 +1100 |
commit | 3e2706a18dd4071d2d3040549786e659fc3b46b7 (patch) | |
tree | 47b053f42ee95ca8dc76fea9525a0928b15e9e03 /ports/esp8266/machine_hspi.c | |
parent | 6989aba93b917fd30ea81b2660d6518c84108db2 (diff) |
extmod/modmachine: Consolidate mem, i2c and spi headers to modmachine.h.
The contents of machine_mem.h, machine_i2c.h and machine_spi.h have been
moved into extmod/modmachine.h.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'ports/esp8266/machine_hspi.c')
-rw-r--r-- | ports/esp8266/machine_hspi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/esp8266/machine_hspi.c b/ports/esp8266/machine_hspi.c index 2edb294ad..1a7de7f49 100644 --- a/ports/esp8266/machine_hspi.c +++ b/ports/esp8266/machine_hspi.c @@ -35,7 +35,7 @@ #include "py/runtime.h" #include "py/stream.h" #include "py/mphal.h" -#include "extmod/machine_spi.h" +#include "extmod/modmachine.h" #include "modmachine.h" #include "hspi.h" |