diff options
author | Damien George <damien.p.george@gmail.com> | 2015-01-25 17:11:47 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-01-25 17:11:47 +0000 |
commit | 4b35a5464cc815c1c09e036dd87c47f5f36fa211 (patch) | |
tree | 92735e24fc5674c184d1e79b06c513c77c7c56f1 /esp8266/mpconfigport.h | |
parent | 552f7c40a0c98fdd3bbf89f7d4ebf23e342e0c01 (diff) | |
parent | 5fb775a0c059d187366525ff66be1c892a7b3302 (diff) | |
download | micropython-4b35a5464cc815c1c09e036dd87c47f5f36fa211.tar.gz micropython-4b35a5464cc815c1c09e036dd87c47f5f36fa211.zip |
Merge branch 'master' of github.com:micropython/micropython
Diffstat (limited to 'esp8266/mpconfigport.h')
-rw-r--r-- | esp8266/mpconfigport.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/esp8266/mpconfigport.h b/esp8266/mpconfigport.h index c1cdcb3402..7e7f0fdbac 100644 --- a/esp8266/mpconfigport.h +++ b/esp8266/mpconfigport.h @@ -59,9 +59,11 @@ extern const struct _mp_obj_fun_builtin_t mp_builtin_open_obj; // extra built in modules to add to the list of known ones extern const struct _mp_obj_module_t pyb_module; +extern const struct _mp_obj_module_t esp_module; #define MICROPY_PORT_BUILTIN_MODULES \ { MP_OBJ_NEW_QSTR(MP_QSTR_pyb), (mp_obj_t)&pyb_module }, \ + { MP_OBJ_NEW_QSTR(MP_QSTR_esp), (mp_obj_t)&esp_module }, \ #define MP_STATE_PORT MP_STATE_VM |