summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2016-02-13 10:41:10 +0000
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2016-03-23 14:19:14 +0200
commit5bc9398d9d803ce554c121ae02bd4bd5c7ea8089 (patch)
treee950309c208eaacec0d8756b6f43a23a89a10e6f
parent8000d51b689d01b084e76f7bc9158759707f1e57 (diff)
downloadmicropython-5bc9398d9d803ce554c121ae02bd4bd5c7ea8089.tar.gz
micropython-5bc9398d9d803ce554c121ae02bd4bd5c7ea8089.zip
esp8266: Enable more extmod's: uheapq, ure, uzlib.
-rw-r--r--esp8266/mpconfigport.h3
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)