diff options
| author | Scott Shawcroft <scott@tannewt.org> | 2018-05-11 19:40:45 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-05-11 19:40:45 -0700 |
| commit | ce5eae1c76b82132453cc9734fb808cf413ffb17 (patch) | |
| tree | b671856e311122fa8f8680fcfa89fb0bc135ca74 | |
| parent | 51106db93d0d2e7bc7f1faa590e177a1ae62f764 (diff) | |
| parent | 471fdae993b6ced3001f10c09fde3c252e87c12f (diff) | |
Merge pull request #761 from jepler/nrf-modules
nrf: Enable binascii, hashlib modules
| -rw-r--r-- | ports/nrf/mpconfigport.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ports/nrf/mpconfigport.h b/ports/nrf/mpconfigport.h index d1e2ace53..a463108b8 100644 --- a/ports/nrf/mpconfigport.h +++ b/ports/nrf/mpconfigport.h @@ -112,7 +112,7 @@ #define MICROPY_PY_IO (0) #define MICROPY_PY_IO_FILEIO (0) #define MICROPY_PY_UERRNO (0) -#define MICROPY_PY_UBINASCII (0) +#define MICROPY_PY_UBINASCII (1) #define MICROPY_PY_URANDOM (0) #define MICROPY_PY_URANDOM_EXTRA_FUNCS (0) #define MICROPY_PY_UCTYPES (0) @@ -120,7 +120,7 @@ #define MICROPY_PY_UJSON (0) #define MICROPY_PY_URE (0) #define MICROPY_PY_UHEAPQ (0) -#define MICROPY_PY_UHASHLIB (0) +#define MICROPY_PY_UHASHLIB (1) #define MICROPY_PY_UTIME_MP_HAL (1) #define MICROPY_PY_STRUCT (0) #define MICROPY_PY_MACHINE (1) |
