esp8266: Fix pyexec calls.

This commit is contained in:
Scott Shawcroft 2016-12-12 17:11:07 -08:00
parent 52f8e1cbf3
commit 9ad0da6134
1 changed files with 2 additions and 2 deletions

View File

@ -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
}