diff options
author | Damien George <damien.p.george@gmail.com> | 2016-04-14 11:15:43 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2016-04-14 12:44:26 +0100 |
commit | 674bf1bc81ab358d167965f06e5c51f86027b050 (patch) | |
tree | 0c47c48b3c59b1d6dc2b5a97c7d67bc509b46659 /esp8266/main.c | |
parent | d9d408135de3845fbc8c21fea35dac90a537c5b0 (diff) |
esp8266: Add hard IRQ callbacks for pin change on GPIO0-15.
Diffstat (limited to 'esp8266/main.c')
-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 08085299b..518ecf17d 100644 --- a/esp8266/main.c +++ b/esp8266/main.c @@ -53,6 +53,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; + pin_init0(); #if MICROPY_MODULE_FROZEN pyexec_frozen_module("_boot"); pyexec_file("boot.py"); |