diff options
Diffstat (limited to 'esp8266')
-rw-r--r-- | esp8266/main.c | 2 | ||||
-rw-r--r-- | esp8266/modpyb.c | 1 | ||||
-rw-r--r-- | esp8266/uart.c | 2 |
3 files changed, 2 insertions, 3 deletions
diff --git a/esp8266/main.c b/esp8266/main.c index 0d8b3723c..178ad8b7c 100644 --- a/esp8266/main.c +++ b/esp8266/main.c @@ -35,7 +35,7 @@ #include "py/frozenmod.h" #include "py/mphal.h" #include "py/gc.h" -#include "pyexec.h" +#include "lib/utils/pyexec.h" #include "gccollect.h" #include "user_interface.h" diff --git a/esp8266/modpyb.c b/esp8266/modpyb.c index 36a9d6bf2..a9daef9c7 100644 --- a/esp8266/modpyb.c +++ b/esp8266/modpyb.c @@ -31,7 +31,6 @@ #include "py/gc.h" #include "py/mphal.h" #include "gccollect.h" -#include "pyexec.h" #include "user_interface.h" #include "modpyb.h" diff --git a/esp8266/uart.c b/esp8266/uart.c index 55841fe39..49fc9bb87 100644 --- a/esp8266/uart.c +++ b/esp8266/uart.c @@ -207,7 +207,7 @@ void ICACHE_FLASH_ATTR uart_reattach() { // Task-based UART interface #include "py/obj.h" -#include "stmhal/pyexec.h" +#include "lib/utils/pyexec.h" void soft_reset(void); |