summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien George <damien@micropython.org>2024-08-19 14:39:37 +1000
committerDamien George <damien@micropython.org>2024-09-06 20:42:56 +1000
commite7974a28f7d023c14f253a888330c40e51f40054 (patch)
treebfd789f185239b8984147d122475bd7e751fd815
parentfc630e70c4d5fdf067a167e50e016d506463f943 (diff)
zephyr/mpconfigport: Enable mpz big integers.
These are needed to be on par with other ports. Signed-off-by: Damien George <damien@micropython.org>
-rw-r--r--ports/zephyr/mpconfigport.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/zephyr/mpconfigport.h b/ports/zephyr/mpconfigport.h
index e963e0d85..26465cbb5 100644
--- a/ports/zephyr/mpconfigport.h
+++ b/ports/zephyr/mpconfigport.h
@@ -90,7 +90,7 @@
#define MICROPY_PY_ZEPHYR (1)
#define MICROPY_PY_ZSENSOR (1)
#define MICROPY_PY_SYS_MODULES (0)
-#define MICROPY_LONGINT_IMPL (MICROPY_LONGINT_IMPL_LONGLONG)
+#define MICROPY_LONGINT_IMPL (MICROPY_LONGINT_IMPL_MPZ)
#define MICROPY_FLOAT_IMPL (MICROPY_FLOAT_IMPL_FLOAT)
#define MICROPY_PY_BUILTINS_COMPLEX (0)
#define MICROPY_ENABLE_SCHEDULER (1)