Skip to content
Snippets Groups Projects
Commit d2ba21bb authored by schneider's avatar schneider
Browse files

change(micropython): Create weak link from `(u)module` to `module`

Create weak links from MicroPython specific implementations of
modules to standard names. I.e. allow `import time` to import
utime module.
parent f0807c24
Branches
No related tags found
No related merge requests found
......@@ -24,6 +24,12 @@
#define MICROPY_ENABLE_SOURCE_LINE (1)
/* Create weak links from MicroPython specific
* implementations of modules to standard names.
* I.e. allow `import time` to import utime module.
*/
#define MICROPY_MODULE_WEAK_LINKS (1)
/* urandom init */
int mp_hal_trng_read_int(void);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment