diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-12-25 22:04:24 +0200 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-03-03 15:35:29 +0200 |
commit | ff69a1d27d260668498bdf14fe3d8d2b32c3f7ef (patch) | |
tree | 10bc31ae4e06d10fa52054382bba6e314374a56c /esp8266 | |
parent | 65405247a049491a29f71a3b4019ed2ef9724317 (diff) | |
download | micropython-ff69a1d27d260668498bdf14fe3d8d2b32c3f7ef.tar.gz micropython-ff69a1d27d260668498bdf14fe3d8d2b32c3f7ef.zip |
esp8266: Enable ujson, ubinascii, and uctypes modules.
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 c24c2cc113..59169c2165 100644 --- a/esp8266/mpconfigport.h +++ b/esp8266/mpconfigport.h @@ -35,6 +35,9 @@ #define MICROPY_PY_SYS (1) #define MICROPY_PY_SYS_EXIT (1) #define MICROPY_PY_SYS_STDFILES (1) +#define MICROPY_PY_UBINASCII (1) +#define MICROPY_PY_UCTYPES (1) +#define MICROPY_PY_UJSON (1) #define MICROPY_CPYTHON_COMPAT (0) #define MICROPY_LONGINT_IMPL (MICROPY_LONGINT_IMPL_MPZ) #define MICROPY_FLOAT_IMPL (MICROPY_FLOAT_IMPL_FLOAT) |