all: Rename UMODULE to MODULE in preprocessor/Makefile vars.
This work was funded through GitHub Sponsors. Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
This commit is contained in:
144
py/mpconfig.h
144
py/mpconfig.h
@@ -1459,40 +1459,40 @@ typedef double mp_float_t;
|
||||
#endif
|
||||
|
||||
// Whether to provide "errno" module
|
||||
#ifndef MICROPY_PY_UERRNO
|
||||
#define MICROPY_PY_UERRNO (MICROPY_CONFIG_ROM_LEVEL_AT_LEAST_EXTRA_FEATURES)
|
||||
#ifndef MICROPY_PY_ERRNO
|
||||
#define MICROPY_PY_ERRNO (MICROPY_CONFIG_ROM_LEVEL_AT_LEAST_EXTRA_FEATURES)
|
||||
#endif
|
||||
|
||||
// Whether to provide the errno.errorcode dict
|
||||
#ifndef MICROPY_PY_UERRNO_ERRORCODE
|
||||
#define MICROPY_PY_UERRNO_ERRORCODE (1)
|
||||
#ifndef MICROPY_PY_ERRNO_ERRORCODE
|
||||
#define MICROPY_PY_ERRNO_ERRORCODE (1)
|
||||
#endif
|
||||
|
||||
// Whether to provide "select" module (baremetal implementation)
|
||||
#ifndef MICROPY_PY_USELECT
|
||||
#define MICROPY_PY_USELECT (MICROPY_CONFIG_ROM_LEVEL_AT_LEAST_EXTRA_FEATURES)
|
||||
#ifndef MICROPY_PY_SELECT
|
||||
#define MICROPY_PY_SELECT (MICROPY_CONFIG_ROM_LEVEL_AT_LEAST_EXTRA_FEATURES)
|
||||
#endif
|
||||
|
||||
// Whether to enable the select() function in the "select" module (baremetal
|
||||
// implementation). This is present for compatibility but can be disabled to
|
||||
// save space.
|
||||
#ifndef MICROPY_PY_USELECT_SELECT
|
||||
#define MICROPY_PY_USELECT_SELECT (1)
|
||||
#ifndef MICROPY_PY_SELECT_SELECT
|
||||
#define MICROPY_PY_SELECT_SELECT (1)
|
||||
#endif
|
||||
|
||||
// Whether to provide the "time" module
|
||||
#ifndef MICROPY_PY_UTIME
|
||||
#define MICROPY_PY_UTIME (MICROPY_CONFIG_ROM_LEVEL_AT_LEAST_BASIC_FEATURES)
|
||||
#ifndef MICROPY_PY_TIME
|
||||
#define MICROPY_PY_TIME (MICROPY_CONFIG_ROM_LEVEL_AT_LEAST_BASIC_FEATURES)
|
||||
#endif
|
||||
|
||||
// Whether to provide time.gmtime/localtime/mktime functions
|
||||
#ifndef MICROPY_PY_UTIME_GMTIME_LOCALTIME_MKTIME
|
||||
#define MICROPY_PY_UTIME_GMTIME_LOCALTIME_MKTIME (0)
|
||||
#ifndef MICROPY_PY_TIME_GMTIME_LOCALTIME_MKTIME
|
||||
#define MICROPY_PY_TIME_GMTIME_LOCALTIME_MKTIME (0)
|
||||
#endif
|
||||
|
||||
// Whether to provide time.time/time_ns functions
|
||||
#ifndef MICROPY_PY_UTIME_TIME_TIME_NS
|
||||
#define MICROPY_PY_UTIME_TIME_TIME_NS (0)
|
||||
#ifndef MICROPY_PY_TIME_TIME_TIME_NS
|
||||
#define MICROPY_PY_TIME_TIME_TIME_NS (0)
|
||||
#endif
|
||||
|
||||
// Period of values returned by time.ticks_ms(), ticks_us(), ticks_cpu()
|
||||
@@ -1501,8 +1501,8 @@ typedef double mp_float_t;
|
||||
// minimum of them should be used. The value below is the maximum value
|
||||
// this parameter can take (corresponding to 30 bit tick values on 32-bit
|
||||
// system).
|
||||
#ifndef MICROPY_PY_UTIME_TICKS_PERIOD
|
||||
#define MICROPY_PY_UTIME_TICKS_PERIOD (MP_SMALL_INT_POSITIVE_MASK + 1)
|
||||
#ifndef MICROPY_PY_TIME_TICKS_PERIOD
|
||||
#define MICROPY_PY_TIME_TICKS_PERIOD (MP_SMALL_INT_POSITIVE_MASK + 1)
|
||||
#endif
|
||||
|
||||
// Whether to provide "_thread" module
|
||||
@@ -1538,101 +1538,101 @@ typedef double mp_float_t;
|
||||
#define MICROPY_PY_UCTYPES_NATIVE_C_TYPES (1)
|
||||
#endif
|
||||
|
||||
#ifndef MICROPY_PY_UZLIB
|
||||
#define MICROPY_PY_UZLIB (MICROPY_CONFIG_ROM_LEVEL_AT_LEAST_EXTRA_FEATURES)
|
||||
#ifndef MICROPY_PY_ZLIB
|
||||
#define MICROPY_PY_ZLIB (MICROPY_CONFIG_ROM_LEVEL_AT_LEAST_EXTRA_FEATURES)
|
||||
#endif
|
||||
|
||||
#ifndef MICROPY_PY_UJSON
|
||||
#define MICROPY_PY_UJSON (MICROPY_CONFIG_ROM_LEVEL_AT_LEAST_EXTRA_FEATURES)
|
||||
#ifndef MICROPY_PY_JSON
|
||||
#define MICROPY_PY_JSON (MICROPY_CONFIG_ROM_LEVEL_AT_LEAST_EXTRA_FEATURES)
|
||||
#endif
|
||||
|
||||
// Whether to support the "separators" argument to dump, dumps
|
||||
#ifndef MICROPY_PY_UJSON_SEPARATORS
|
||||
#define MICROPY_PY_UJSON_SEPARATORS (1)
|
||||
#ifndef MICROPY_PY_JSON_SEPARATORS
|
||||
#define MICROPY_PY_JSON_SEPARATORS (1)
|
||||
#endif
|
||||
|
||||
#ifndef MICROPY_PY_UOS
|
||||
#define MICROPY_PY_UOS (MICROPY_CONFIG_ROM_LEVEL_AT_LEAST_EXTRA_FEATURES)
|
||||
#ifndef MICROPY_PY_OS
|
||||
#define MICROPY_PY_OS (MICROPY_CONFIG_ROM_LEVEL_AT_LEAST_EXTRA_FEATURES)
|
||||
#endif
|
||||
|
||||
#ifndef MICROPY_PY_UOS_STATVFS
|
||||
#define MICROPY_PY_UOS_STATVFS (MICROPY_PY_UOS)
|
||||
#ifndef MICROPY_PY_OS_STATVFS
|
||||
#define MICROPY_PY_OS_STATVFS (MICROPY_PY_OS)
|
||||
#endif
|
||||
|
||||
#ifndef MICROPY_PY_URE
|
||||
#define MICROPY_PY_URE (MICROPY_CONFIG_ROM_LEVEL_AT_LEAST_EXTRA_FEATURES)
|
||||
#ifndef MICROPY_PY_RE
|
||||
#define MICROPY_PY_RE (MICROPY_CONFIG_ROM_LEVEL_AT_LEAST_EXTRA_FEATURES)
|
||||
#endif
|
||||
|
||||
#ifndef MICROPY_PY_URE_DEBUG
|
||||
#define MICROPY_PY_URE_DEBUG (MICROPY_CONFIG_ROM_LEVEL_AT_LEAST_EVERYTHING)
|
||||
#ifndef MICROPY_PY_RE_DEBUG
|
||||
#define MICROPY_PY_RE_DEBUG (MICROPY_CONFIG_ROM_LEVEL_AT_LEAST_EVERYTHING)
|
||||
#endif
|
||||
|
||||
#ifndef MICROPY_PY_URE_MATCH_GROUPS
|
||||
#define MICROPY_PY_URE_MATCH_GROUPS (MICROPY_CONFIG_ROM_LEVEL_AT_LEAST_EVERYTHING)
|
||||
#ifndef MICROPY_PY_RE_MATCH_GROUPS
|
||||
#define MICROPY_PY_RE_MATCH_GROUPS (MICROPY_CONFIG_ROM_LEVEL_AT_LEAST_EVERYTHING)
|
||||
#endif
|
||||
|
||||
#ifndef MICROPY_PY_URE_MATCH_SPAN_START_END
|
||||
#define MICROPY_PY_URE_MATCH_SPAN_START_END (MICROPY_CONFIG_ROM_LEVEL_AT_LEAST_EVERYTHING)
|
||||
#ifndef MICROPY_PY_RE_MATCH_SPAN_START_END
|
||||
#define MICROPY_PY_RE_MATCH_SPAN_START_END (MICROPY_CONFIG_ROM_LEVEL_AT_LEAST_EVERYTHING)
|
||||
#endif
|
||||
|
||||
#ifndef MICROPY_PY_URE_SUB
|
||||
#define MICROPY_PY_URE_SUB (MICROPY_CONFIG_ROM_LEVEL_AT_LEAST_EXTRA_FEATURES)
|
||||
#ifndef MICROPY_PY_RE_SUB
|
||||
#define MICROPY_PY_RE_SUB (MICROPY_CONFIG_ROM_LEVEL_AT_LEAST_EXTRA_FEATURES)
|
||||
#endif
|
||||
|
||||
#ifndef MICROPY_PY_UHEAPQ
|
||||
#define MICROPY_PY_UHEAPQ (MICROPY_CONFIG_ROM_LEVEL_AT_LEAST_EXTRA_FEATURES)
|
||||
#ifndef MICROPY_PY_HEAPQ
|
||||
#define MICROPY_PY_HEAPQ (MICROPY_CONFIG_ROM_LEVEL_AT_LEAST_EXTRA_FEATURES)
|
||||
#endif
|
||||
|
||||
// Optimized heap queue for relative timestamps (only used by uasyncio v2)
|
||||
#ifndef MICROPY_PY_UTIMEQ
|
||||
#define MICROPY_PY_UTIMEQ (0)
|
||||
#ifndef MICROPY_PY_TIMEQ
|
||||
#define MICROPY_PY_TIMEQ (0)
|
||||
#endif
|
||||
|
||||
#ifndef MICROPY_PY_UHASHLIB
|
||||
#define MICROPY_PY_UHASHLIB (MICROPY_CONFIG_ROM_LEVEL_AT_LEAST_EXTRA_FEATURES)
|
||||
#ifndef MICROPY_PY_HASHLIB
|
||||
#define MICROPY_PY_HASHLIB (MICROPY_CONFIG_ROM_LEVEL_AT_LEAST_EXTRA_FEATURES)
|
||||
#endif
|
||||
|
||||
#ifndef MICROPY_PY_UHASHLIB_MD5
|
||||
#define MICROPY_PY_UHASHLIB_MD5 (0)
|
||||
#ifndef MICROPY_PY_HASHLIB_MD5
|
||||
#define MICROPY_PY_HASHLIB_MD5 (0)
|
||||
#endif
|
||||
|
||||
#ifndef MICROPY_PY_UHASHLIB_SHA1
|
||||
#define MICROPY_PY_UHASHLIB_SHA1 (0)
|
||||
#ifndef MICROPY_PY_HASHLIB_SHA1
|
||||
#define MICROPY_PY_HASHLIB_SHA1 (0)
|
||||
#endif
|
||||
|
||||
#ifndef MICROPY_PY_UHASHLIB_SHA256
|
||||
#define MICROPY_PY_UHASHLIB_SHA256 (1)
|
||||
#ifndef MICROPY_PY_HASHLIB_SHA256
|
||||
#define MICROPY_PY_HASHLIB_SHA256 (1)
|
||||
#endif
|
||||
|
||||
#ifndef MICROPY_PY_UCRYPTOLIB
|
||||
#define MICROPY_PY_UCRYPTOLIB (0)
|
||||
#ifndef MICROPY_PY_CRYPTOLIB
|
||||
#define MICROPY_PY_CRYPTOLIB (0)
|
||||
#endif
|
||||
|
||||
// Depends on MICROPY_PY_UCRYPTOLIB
|
||||
#ifndef MICROPY_PY_UCRYPTOLIB_CTR
|
||||
#define MICROPY_PY_UCRYPTOLIB_CTR (0)
|
||||
// Depends on MICROPY_PY_CRYPTOLIB
|
||||
#ifndef MICROPY_PY_CRYPTOLIB_CTR
|
||||
#define MICROPY_PY_CRYPTOLIB_CTR (0)
|
||||
#endif
|
||||
|
||||
#ifndef MICROPY_PY_UCRYPTOLIB_CONSTS
|
||||
#define MICROPY_PY_UCRYPTOLIB_CONSTS (0)
|
||||
#ifndef MICROPY_PY_CRYPTOLIB_CONSTS
|
||||
#define MICROPY_PY_CRYPTOLIB_CONSTS (0)
|
||||
#endif
|
||||
|
||||
#ifndef MICROPY_PY_UBINASCII
|
||||
#define MICROPY_PY_UBINASCII (MICROPY_CONFIG_ROM_LEVEL_AT_LEAST_EXTRA_FEATURES)
|
||||
#ifndef MICROPY_PY_BINASCII
|
||||
#define MICROPY_PY_BINASCII (MICROPY_CONFIG_ROM_LEVEL_AT_LEAST_EXTRA_FEATURES)
|
||||
#endif
|
||||
|
||||
// Depends on MICROPY_PY_UZLIB
|
||||
#ifndef MICROPY_PY_UBINASCII_CRC32
|
||||
#define MICROPY_PY_UBINASCII_CRC32 (MICROPY_CONFIG_ROM_LEVEL_AT_LEAST_EXTRA_FEATURES)
|
||||
// Depends on MICROPY_PY_ZLIB
|
||||
#ifndef MICROPY_PY_BINASCII_CRC32
|
||||
#define MICROPY_PY_BINASCII_CRC32 (MICROPY_CONFIG_ROM_LEVEL_AT_LEAST_EXTRA_FEATURES)
|
||||
#endif
|
||||
|
||||
#ifndef MICROPY_PY_URANDOM
|
||||
#define MICROPY_PY_URANDOM (MICROPY_CONFIG_ROM_LEVEL_AT_LEAST_EXTRA_FEATURES)
|
||||
#ifndef MICROPY_PY_RANDOM
|
||||
#define MICROPY_PY_RANDOM (MICROPY_CONFIG_ROM_LEVEL_AT_LEAST_EXTRA_FEATURES)
|
||||
#endif
|
||||
|
||||
// Whether to include: randrange, randint, choice, random, uniform
|
||||
#ifndef MICROPY_PY_URANDOM_EXTRA_FUNCS
|
||||
#define MICROPY_PY_URANDOM_EXTRA_FUNCS (MICROPY_CONFIG_ROM_LEVEL_AT_LEAST_EXTRA_FEATURES)
|
||||
#ifndef MICROPY_PY_RANDOM_EXTRA_FUNCS
|
||||
#define MICROPY_PY_RANDOM_EXTRA_FUNCS (MICROPY_CONFIG_ROM_LEVEL_AT_LEAST_EXTRA_FEATURES)
|
||||
#endif
|
||||
|
||||
#ifndef MICROPY_PY_MACHINE
|
||||
@@ -1678,21 +1678,21 @@ typedef double mp_float_t;
|
||||
#endif
|
||||
|
||||
// The default backlog value for socket.listen(backlog)
|
||||
#ifndef MICROPY_PY_USOCKET_LISTEN_BACKLOG_DEFAULT
|
||||
#define MICROPY_PY_USOCKET_LISTEN_BACKLOG_DEFAULT (2)
|
||||
#ifndef MICROPY_PY_SOCKET_LISTEN_BACKLOG_DEFAULT
|
||||
#define MICROPY_PY_SOCKET_LISTEN_BACKLOG_DEFAULT (2)
|
||||
#endif
|
||||
|
||||
#ifndef MICROPY_PY_USSL
|
||||
#define MICROPY_PY_USSL (0)
|
||||
#ifndef MICROPY_PY_SSL
|
||||
#define MICROPY_PY_SSL (0)
|
||||
#endif
|
||||
|
||||
// Whether to add finaliser code to ssl objects
|
||||
#ifndef MICROPY_PY_USSL_FINALISER
|
||||
#define MICROPY_PY_USSL_FINALISER (0)
|
||||
#ifndef MICROPY_PY_SSL_FINALISER
|
||||
#define MICROPY_PY_SSL_FINALISER (0)
|
||||
#endif
|
||||
|
||||
#ifndef MICROPY_PY_UWEBSOCKET
|
||||
#define MICROPY_PY_UWEBSOCKET (0)
|
||||
#ifndef MICROPY_PY_WEBSOCKET
|
||||
#define MICROPY_PY_WEBSOCKET (0)
|
||||
#endif
|
||||
|
||||
#ifndef MICROPY_PY_FRAMEBUF
|
||||
|
||||
Reference in New Issue
Block a user