diff options
author | Maureen Helm <maureen.helm@nxp.com> | 2020-10-18 14:54:38 -0500 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2021-02-16 18:38:13 +1100 |
commit | f49a73641ac677ea49a031ae7efc5822441f0cb5 (patch) | |
tree | cf32c536def435afdfc423e1d0cc8d23f0eb4bf4 | |
parent | dff6fc64d23c548dce2b43096c3f1522db303de8 (diff) |
zephyr: Disable frozen source modules.
Disables frozen source modules in the zephyr port. They are deprecated
in the makefile rules and not implemented in the new cmake rules.
Signed-off-by: Maureen Helm <maureen.helm@nxp.com>
-rw-r--r-- | ports/zephyr/mpconfigport.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/zephyr/mpconfigport.h b/ports/zephyr/mpconfigport.h index 6bfd9ff88..966f7f7e9 100644 --- a/ports/zephyr/mpconfigport.h +++ b/ports/zephyr/mpconfigport.h @@ -110,7 +110,7 @@ #define MICROPY_HW_MCU_NAME "unknown-cpu" #endif -#define MICROPY_MODULE_FROZEN_STR (1) +#define MICROPY_MODULE_FROZEN_STR (0) typedef int mp_int_t; // must be pointer size typedef unsigned mp_uint_t; // must be pointer size |