add binascii to most builds
This commit is contained in:
parent
6fba68b054
commit
72b829dff0
@ -47,6 +47,7 @@
|
|||||||
// MICROPY_PY_UJSON depends on MICROPY_PY_IO
|
// MICROPY_PY_UJSON depends on MICROPY_PY_IO
|
||||||
#define MICROPY_PY_IO (0)
|
#define MICROPY_PY_IO (0)
|
||||||
#define MICROPY_PY_REVERSE_SPECIAL_METHODS (0)
|
#define MICROPY_PY_REVERSE_SPECIAL_METHODS (0)
|
||||||
|
#define MICROPY_PY_UBINASCII (0)
|
||||||
#define MICROPY_PY_UJSON (0)
|
#define MICROPY_PY_UJSON (0)
|
||||||
#define MICROPY_PY_COLLECTIONS_ORDEREDDICT (0)
|
#define MICROPY_PY_COLLECTIONS_ORDEREDDICT (0)
|
||||||
#define MICROPY_PY_UERRNO_LIST \
|
#define MICROPY_PY_UERRNO_LIST \
|
||||||
|
@ -197,6 +197,9 @@ typedef long mp_off_t;
|
|||||||
#ifndef MICROPY_PY_COLLECTIONS_ORDEREDDICT
|
#ifndef MICROPY_PY_COLLECTIONS_ORDEREDDICT
|
||||||
#define MICROPY_PY_COLLECTIONS_ORDEREDDICT (CIRCUITPY_FULL_BUILD)
|
#define MICROPY_PY_COLLECTIONS_ORDEREDDICT (CIRCUITPY_FULL_BUILD)
|
||||||
#endif
|
#endif
|
||||||
|
#ifndef MICROPY_PY_UBINASCII
|
||||||
|
#define MICROPY_PY_UBINASCII (CIRCUITPY_FULL_BUILD)
|
||||||
|
#endif
|
||||||
// Opposite setting is deliberate.
|
// Opposite setting is deliberate.
|
||||||
#define MICROPY_PY_UERRNO_ERRORCODE (!CIRCUITPY_FULL_BUILD)
|
#define MICROPY_PY_UERRNO_ERRORCODE (!CIRCUITPY_FULL_BUILD)
|
||||||
#ifndef MICROPY_PY_URE
|
#ifndef MICROPY_PY_URE
|
||||||
@ -699,6 +702,12 @@ extern const struct _mp_obj_module_t ustack_module;
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
// These modules are not yet in shared-bindings, but we prefer the non-uxxx names.
|
// These modules are not yet in shared-bindings, but we prefer the non-uxxx names.
|
||||||
|
#if MICROPY_PY_UBINASCII
|
||||||
|
#define BINASCII_MODULE { MP_ROM_QSTR(MP_QSTR_binascii), MP_ROM_PTR(&mp_module_ubinascii) },
|
||||||
|
#else
|
||||||
|
#define BINASCII_MODULE
|
||||||
|
#endif
|
||||||
|
|
||||||
#if MICROPY_PY_UERRNO
|
#if MICROPY_PY_UERRNO
|
||||||
#define ERRNO_MODULE { MP_ROM_QSTR(MP_QSTR_errno), MP_ROM_PTR(&mp_module_uerrno) },
|
#define ERRNO_MODULE { MP_ROM_QSTR(MP_QSTR_errno), MP_ROM_PTR(&mp_module_uerrno) },
|
||||||
#else
|
#else
|
||||||
@ -770,6 +779,7 @@ extern const struct _mp_obj_module_t wifi_module;
|
|||||||
AUDIOMIXER_MODULE \
|
AUDIOMIXER_MODULE \
|
||||||
AUDIOMP3_MODULE \
|
AUDIOMP3_MODULE \
|
||||||
AUDIOPWMIO_MODULE \
|
AUDIOPWMIO_MODULE \
|
||||||
|
BINASCII_MODULE \
|
||||||
BITBANGIO_MODULE \
|
BITBANGIO_MODULE \
|
||||||
BLEIO_MODULE \
|
BLEIO_MODULE \
|
||||||
BOARD_MODULE \
|
BOARD_MODULE \
|
||||||
|
@ -239,7 +239,12 @@ STATIC const mp_rom_map_elem_t mp_builtin_module_table[] = {
|
|||||||
{ MP_ROM_QSTR(MP_QSTR_hashlib), MP_ROM_PTR(&mp_module_uhashlib) },
|
{ MP_ROM_QSTR(MP_QSTR_hashlib), MP_ROM_PTR(&mp_module_uhashlib) },
|
||||||
#endif
|
#endif
|
||||||
#if MICROPY_PY_UBINASCII
|
#if MICROPY_PY_UBINASCII
|
||||||
{ MP_ROM_QSTR(MP_QSTR_binascii), MP_ROM_PTR(&mp_module_ubinascii) },
|
#if CIRCUITPY
|
||||||
|
// CircuitPython: Defined in MICROPY_PORT_BUILTIN_MODULES, so not defined here.
|
||||||
|
// TODO: move to shared-bindings/
|
||||||
|
#else
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_ubinascii), MP_ROM_PTR(&mp_module_ubinascii) },
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
#if MICROPY_PY_URANDOM
|
#if MICROPY_PY_URANDOM
|
||||||
{ MP_ROM_QSTR(MP_QSTR_urandom), MP_ROM_PTR(&mp_module_urandom) },
|
{ MP_ROM_QSTR(MP_QSTR_urandom), MP_ROM_PTR(&mp_module_urandom) },
|
||||||
|
Loading…
x
Reference in New Issue
Block a user