diff options
Diffstat (limited to 'esp8266/main.c')
-rw-r--r-- | esp8266/main.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/esp8266/main.c b/esp8266/main.c index 1701ef69f9..bbd0b4dfd8 100644 --- a/esp8266/main.c +++ b/esp8266/main.c @@ -54,7 +54,9 @@ STATIC void mp_reset(void) { MP_STATE_PORT(mp_kbd_exception) = mp_obj_new_exception(&mp_type_KeyboardInterrupt); MP_STATE_PORT(term_obj) = MP_OBJ_NULL; #if MICROPY_MODULE_FROZEN - pyexec_frozen_module("boot"); + pyexec_frozen_module("_boot"); + pyexec_file("boot.py"); + pyexec_file("main.py"); #endif } |