aboutsummaryrefslogtreecommitdiff
path: root/esp8266/main.c
diff options
context:
space:
mode:
authorScott Shawcroft <scott.shawcroft@gmail.com>2016-12-12 17:11:07 -0800
committerScott Shawcroft <scott.shawcroft@gmail.com>2016-12-12 17:11:07 -0800
commit9ad0da61348ab034ac762b42e6e080daaefe96fd (patch)
treeedd87686ef2ddbe0db50f0cd5e47675726d54e42 /esp8266/main.c
parent52f8e1cbf3b5f73985110cbdf2be829c7fe12d97 (diff)
esp8266: Fix pyexec calls.
Diffstat (limited to 'esp8266/main.c')
-rw-r--r--esp8266/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/esp8266/main.c b/esp8266/main.c
index 160d8e415..7f76a8910 100644
--- a/esp8266/main.c
+++ b/esp8266/main.c
@@ -65,8 +65,8 @@ STATIC void mp_reset(void) {
dupterm_task_init();
#if MICROPY_MODULE_FROZEN
pyexec_frozen_module("_boot.py");
- pyexec_file("boot.py");
- pyexec_file("main.py");
+ pyexec_file("boot.py", NULL);
+ pyexec_file("main.py", NULL);
#endif
}