From 5bc9398d9d803ce554c121ae02bd4bd5c7ea8089 Mon Sep 17 00:00:00 2001 From: Damien George Date: Sat, 13 Feb 2016 10:41:10 +0000 Subject: [PATCH] esp8266: Enable more extmod's: uheapq, ure, uzlib. --- esp8266/mpconfigport.h | 3 +++ 1 file changed, 3 insertions(+) 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)