diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-02-20 20:45:23 +0200 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-03-08 12:37:24 +0700 |
commit | a0cd118b142b6f356b11cb0d025d53a5db6a48c7 (patch) | |
tree | b544a8066e3f68b15134eed555fccf2ca297baf5 | |
parent | f8d42da10447bf048ed750b14230486d740b0c50 (diff) | |
download | micropython-a0cd118b142b6f356b11cb0d025d53a5db6a48c7.tar.gz micropython-a0cd118b142b6f356b11cb0d025d53a5db6a48c7.zip |
esp8266/main: Module to run on boot is "boot", not "main".
-rw-r--r-- | esp8266/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/esp8266/main.c b/esp8266/main.c index 062cc6c58a..2046d12d6a 100644 --- a/esp8266/main.c +++ b/esp8266/main.c @@ -50,7 +50,7 @@ STATIC void mp_reset(void) { mp_obj_list_init(mp_sys_argv, 0); MP_STATE_PORT(mp_kbd_exception) = mp_obj_new_exception(&mp_type_KeyboardInterrupt); #if MICROPY_MODULE_FROZEN - pyexec_frozen_module("main"); + pyexec_frozen_module("boot"); #endif } |