diff options
| author | Scott Shawcroft <scott.shawcroft@gmail.com> | 2016-12-12 17:11:07 -0800 |
|---|---|---|
| committer | Scott Shawcroft <scott.shawcroft@gmail.com> | 2016-12-12 17:11:07 -0800 |
| commit | 9ad0da61348ab034ac762b42e6e080daaefe96fd (patch) | |
| tree | edd87686ef2ddbe0db50f0cd5e47675726d54e42 /esp8266 | |
| parent | 52f8e1cbf3b5f73985110cbdf2be829c7fe12d97 (diff) | |
esp8266: Fix pyexec calls.
Diffstat (limited to 'esp8266')
| -rw-r--r-- | esp8266/main.c | 4 |
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 } |
