diff options
author | Damien George <damien.p.george@gmail.com> | 2016-02-13 10:41:10 +0000 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-03-23 14:19:14 +0200 |
commit | 5bc9398d9d803ce554c121ae02bd4bd5c7ea8089 (patch) | |
tree | e950309c208eaacec0d8756b6f43a23a89a10e6f /esp8266 | |
parent | 8000d51b689d01b084e76f7bc9158759707f1e57 (diff) | |
download | micropython-5bc9398d9d803ce554c121ae02bd4bd5c7ea8089.tar.gz micropython-5bc9398d9d803ce554c121ae02bd4bd5c7ea8089.zip |
esp8266: Enable more extmod's: uheapq, ure, uzlib.
Diffstat (limited to 'esp8266')
-rw-r--r-- | esp8266/mpconfigport.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/esp8266/mpconfigport.h b/esp8266/mpconfigport.h index 6e236c506c..5aea7b7aee 100644 --- a/esp8266/mpconfigport.h +++ b/esp8266/mpconfigport.h @@ -42,8 +42,11 @@ #define MICROPY_PY_UCTYPES (1) #define MICROPY_PY_UHASHLIB (1) #define MICROPY_PY_UHASHLIB_SHA1 (1) +#define MICROPY_PY_UHEAPQ (1) #define MICROPY_PY_UJSON (1) #define MICROPY_PY_URANDOM (1) +#define MICROPY_PY_URE (1) +#define MICROPY_PY_UZLIB (1) #define MICROPY_PY_LWIP (1) #define MICROPY_PY_MACHINE (1) #define MICROPY_PY_MICROPYTHON_MEM_INFO (1) |