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:
Jim Mussared
2022-08-18 15:01:26 +10:00
parent 7f5d5c7271
commit f5f9edf645
126 changed files with 563 additions and 563 deletions

View File

@@ -41,8 +41,8 @@
#define MICROPY_EMIT_INLINE_THUMB (1)
// Enable optional modules
#define MICROPY_PY_UERRNO (1)
#define MICROPY_PY_UHASHLIB (1)
#define MICROPY_PY_ERRNO (1)
#define MICROPY_PY_HASHLIB (1)
// Peripherals Config
#define MICROPY_PY_MACHINE_UART (1)

View File

@@ -80,8 +80,8 @@
#define MICROPY_PY_SYS_STDFILES (CORE_FEAT)
#endif
#ifndef MICROPY_PY_UBINASCII
#define MICROPY_PY_UBINASCII (CORE_FEAT)
#ifndef MICROPY_PY_BINASCII
#define MICROPY_PY_BINASCII (CORE_FEAT)
#endif
#ifndef MICROPY_PY_NRF
@@ -134,7 +134,7 @@
#endif
// Use port specific os module rather than extmod variant.
#define MICROPY_PY_UOS (0)
#define MICROPY_PY_OS (0)
#define MICROPY_STREAMS_NON_BLOCK (1)
#define MICROPY_CAN_OVERRIDE_BUILTINS (1)
@@ -155,9 +155,9 @@
#define MICROPY_MODULE_BUILTIN_INIT (1)
#define MICROPY_PY_MICROPYTHON_MEM_INFO (1)
#define MICROPY_PY_SYS_MAXSIZE (1)
#define MICROPY_PY_URANDOM (1)
#define MICROPY_PY_URANDOM_EXTRA_FUNCS (1)
#define MICROPY_PY_UTIME (1)
#define MICROPY_PY_RANDOM (1)
#define MICROPY_PY_RANDOM_EXTRA_FUNCS (1)
#define MICROPY_PY_TIME (1)
#define MICROPY_PY_MACHINE (1)
#define MICROPY_PY_MACHINE_PULSE (0)
#define MICROPY_PY_MACHINE_SOFTI2C (MICROPY_PY_MACHINE_I2C)
@@ -286,7 +286,7 @@ typedef unsigned int mp_uint_t; // must be pointer size
typedef long mp_off_t;
#if MICROPY_HW_ENABLE_RNG
#define MICROPY_PY_URANDOM_SEED_INIT_FUNC (rng_generate_random_word())
#define MICROPY_PY_RANDOM_SEED_INIT_FUNC (rng_generate_random_word())
long unsigned int rng_generate_random_word(void);
#endif