summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--cc3200/mods/modmachine.c1
-rw-r--r--cc3200/mptask.c2
-rw-r--r--esp8266/main.c2
-rw-r--r--esp8266/modpyb.c1
-rw-r--r--esp8266/uart.c2
-rw-r--r--lib/utils/pyexec.c2
-rw-r--r--lib/utils/pyexec.h (renamed from stmhal/pyexec.h)4
-rw-r--r--minimal/main.c2
-rw-r--r--pic16bit/main.c2
-rw-r--r--stmhal/main.c2
-rw-r--r--stmhal/modpyb.c2
-rw-r--r--teensy/main.c2
-rw-r--r--teensy/modpyb.c3
13 files changed, 15 insertions, 12 deletions
diff --git a/cc3200/mods/modmachine.c b/cc3200/mods/modmachine.c
index 896aa9917f..ed24951a60 100644
--- a/cc3200/mods/modmachine.c
+++ b/cc3200/mods/modmachine.c
@@ -39,7 +39,6 @@
#include "inc/hw_uart.h"
#include "rom_map.h"
#include "prcm.h"
-#include "pyexec.h"
#include "pybuart.h"
#include "pybpin.h"
#include "pybrtc.h"
diff --git a/cc3200/mptask.c b/cc3200/mptask.c
index 7346ddaf29..96a4001ad0 100644
--- a/cc3200/mptask.c
+++ b/cc3200/mptask.c
@@ -43,7 +43,7 @@
#include "pybuart.h"
#include "pybpin.h"
#include "pybrtc.h"
-#include "pyexec.h"
+#include "lib/utils/pyexec.h"
#include "gccollect.h"
#include "gchelper.h"
#include "readline.h"
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);
diff --git a/lib/utils/pyexec.c b/lib/utils/pyexec.c
index abf74d6db9..295d059433 100644
--- a/lib/utils/pyexec.c
+++ b/lib/utils/pyexec.c
@@ -39,7 +39,7 @@
#include "usb.h"
#endif
#include "readline.h"
-#include "pyexec.h"
+#include "lib/utils/pyexec.h"
#include "genhdr/mpversion.h"
pyexec_mode_kind_t pyexec_mode_kind = PYEXEC_MODE_FRIENDLY_REPL;
diff --git a/stmhal/pyexec.h b/lib/utils/pyexec.h
index 0728b91333..96bb481a54 100644
--- a/stmhal/pyexec.h
+++ b/lib/utils/pyexec.h
@@ -23,6 +23,8 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
+#ifndef __MICROPY_INCLUDED_LIB_UTILS_PYEXEC_H__
+#define __MICROPY_INCLUDED_LIB_UTILS_PYEXEC_H__
typedef enum {
PYEXEC_MODE_RAW_REPL,
@@ -41,3 +43,5 @@ void pyexec_event_repl_init(void);
int pyexec_event_repl_process_char(int c);
MP_DECLARE_CONST_FUN_OBJ(pyb_set_repl_info_obj);
+
+#endif // __MICROPY_INCLUDED_LIB_UTILS_PYEXEC_H__
diff --git a/minimal/main.c b/minimal/main.c
index dc34d89bc0..cb3b625085 100644
--- a/minimal/main.c
+++ b/minimal/main.c
@@ -7,7 +7,7 @@
#include "py/runtime.h"
#include "py/repl.h"
#include "py/gc.h"
-#include "pyexec.h"
+#include "lib/utils/pyexec.h"
void do_str(const char *src, mp_parse_input_kind_t input_kind) {
mp_lexer_t *lex = mp_lexer_new_from_str_len(MP_QSTR__lt_stdin_gt_, src, strlen(src), 0);
diff --git a/pic16bit/main.c b/pic16bit/main.c
index ad6f9e3644..b8e9b46ead 100644
--- a/pic16bit/main.c
+++ b/pic16bit/main.c
@@ -33,7 +33,7 @@
#include "py/runtime.h"
#include "py/gc.h"
#include "py/mphal.h"
-#include "pyexec.h"
+#include "lib/utils/pyexec.h"
#include "readline.h"
#include "board.h"
#include "modpyb.h"
diff --git a/stmhal/main.c b/stmhal/main.c
index de52cac8fe..f6d6ada703 100644
--- a/stmhal/main.c
+++ b/stmhal/main.c
@@ -36,13 +36,13 @@
#include "py/gc.h"
#include "py/mphal.h"
+#include "lib/utils/pyexec.h"
#include "lib/fatfs/ff.h"
#include "systick.h"
#include "pendsv.h"
#include "gccollect.h"
#include "readline.h"
-#include "pyexec.h"
#include "i2c.h"
#include "spi.h"
#include "uart.h"
diff --git a/stmhal/modpyb.c b/stmhal/modpyb.c
index b7df53f674..e8dcd57a0f 100644
--- a/stmhal/modpyb.c
+++ b/stmhal/modpyb.c
@@ -33,12 +33,12 @@
#include "py/nlr.h"
#include "py/obj.h"
#include "py/gc.h"
+#include "lib/utils/pyexec.h"
#include "lib/fatfs/ff.h"
#include "lib/fatfs/diskio.h"
#include "gccollect.h"
#include "irq.h"
#include "systick.h"
-#include "pyexec.h"
#include "led.h"
#include "pin.h"
#include "timer.h"
diff --git a/teensy/main.c b/teensy/main.c
index 417bde78be..ac73259095 100644
--- a/teensy/main.c
+++ b/teensy/main.c
@@ -11,7 +11,7 @@
#include "py/gc.h"
#include "py/mphal.h"
#include "gccollect.h"
-#include "pyexec.h"
+#include "lib/utils/pyexec.h"
#include "readline.h"
#include "lexermemzip.h"
diff --git a/teensy/modpyb.c b/teensy/modpyb.c
index 8429191af9..aa62f78703 100644
--- a/teensy/modpyb.c
+++ b/teensy/modpyb.c
@@ -33,10 +33,11 @@
#include "py/gc.h"
#include "py/mphal.h"
+#include "lib/utils/pyexec.h"
+
#include "gccollect.h"
#include "irq.h"
#include "systick.h"
-#include "pyexec.h"
#include "led.h"
#include "pin.h"
#include "timer.h"