From 9ad0da61348ab034ac762b42e6e080daaefe96fd Mon Sep 17 00:00:00 2001 From: Scott Shawcroft Date: Mon, 12 Dec 2016 17:11:07 -0800 Subject: esp8266: Fix pyexec calls. --- esp8266/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'esp8266') 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 } -- cgit v1.2.3