summaryrefslogtreecommitdiffstatshomepage
path: root/esp8266
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2015-11-09 13:13:09 +0000
committerDamien George <damien.p.george@gmail.com>2015-11-09 13:13:09 +0000
commit40274fec9c0f8e1ce06f999927f550106b9aa5e8 (patch)
treee844a4ee49957ccb0a8f2f1585826c55201ed3e8 /esp8266
parent50f56227c651dfec18f0c72add3649ab0d678346 (diff)
downloadmicropython-40274fec9c0f8e1ce06f999927f550106b9aa5e8.tar.gz
micropython-40274fec9c0f8e1ce06f999927f550106b9aa5e8.zip
lib/pyexec: Move header pyexec.h from stmhal directory.
Diffstat (limited to 'esp8266')
-rw-r--r--esp8266/main.c2
-rw-r--r--esp8266/modpyb.c1
-rw-r--r--esp8266/uart.c2
3 files changed, 2 insertions, 3 deletions
diff --git a/esp8266/main.c b/esp8266/main.c
index 0d8b3723ca..178ad8b7c2 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 36a9d6bf2a..a9daef9c7e 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 55841fe396..49fc9bb87c 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);