diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-12-20 13:58:58 +0200 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-03-05 22:01:27 +0200 |
commit | d3a4d39687f941d12d727b80c79dd98ebae03674 (patch) | |
tree | 155e0c8a446f1cd4d8d99701c04bd271342464a6 /esp8266/mpconfigport.h | |
parent | 077448328a42e732c1ae3a063670b71914ed489c (diff) |
esp8266: Support raising KeyboardInterrupt on Ctrl+C.
Diffstat (limited to 'esp8266/mpconfigport.h')
-rw-r--r-- | esp8266/mpconfigport.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/esp8266/mpconfigport.h b/esp8266/mpconfigport.h index 1f7ab09e2..75e3f46c5 100644 --- a/esp8266/mpconfigport.h +++ b/esp8266/mpconfigport.h @@ -99,6 +99,7 @@ extern const struct _mp_obj_module_t mp_module_machine; #define MICROPY_PORT_ROOT_POINTERS \ const char *readline_hist[8]; \ + mp_obj_t mp_kbd_exception; \ \ /* Singleton instance of scan callback, meaning that there can be only one concurrent AP scan. */ \ |