diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-07-04 17:40:26 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-07-04 17:40:26 +0300 |
commit | e07ef8f1a2564b75dc1e1147f00d966f25dcc367 (patch) | |
tree | dd319664422cf173fd270b9c5d554a6ac904510b /esp8266 | |
parent | 426112ce88bf3f6f86bf6900b74d7719d9991167 (diff) | |
download | micropython-e07ef8f1a2564b75dc1e1147f00d966f25dcc367.tar.gz micropython-e07ef8f1a2564b75dc1e1147f00d966f25dcc367.zip |
esp8266/main: Init recently added dupterm_arr_obj port state var.
Diffstat (limited to 'esp8266')
-rw-r--r-- | esp8266/main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/esp8266/main.c b/esp8266/main.c index 0224bed488..21bb6e0e0f 100644 --- a/esp8266/main.c +++ b/esp8266/main.c @@ -57,6 +57,7 @@ STATIC void mp_reset(void) { #endif MP_STATE_PORT(mp_kbd_exception) = mp_obj_new_exception(&mp_type_KeyboardInterrupt); MP_STATE_PORT(term_obj) = MP_OBJ_NULL; + MP_STATE_PORT(dupterm_arr_obj) = MP_OBJ_NULL; pin_init0(); readline_init0(); #if MICROPY_MODULE_FROZEN |