We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec65cac commit 6881618Copy full SHA for 6881618
ports/zephyr/mpconfigport.h
@@ -100,6 +100,7 @@
100
#define MICROPY_PY_TIME_INCLUDEFILE "ports/zephyr/modtime.c"
101
#define MICROPY_PY_ZEPHYR (1)
102
#define MICROPY_PY_ZSENSOR (1)
103
+#define MICROPY_PY_SYS_MAXSIZE (1)
104
#define MICROPY_PY_SYS_STDFILES (1)
105
#define MICROPY_LONGINT_IMPL (MICROPY_LONGINT_IMPL_MPZ)
106
#define MICROPY_FLOAT_IMPL (MICROPY_FLOAT_IMPL_FLOAT)
@@ -150,6 +151,8 @@ typedef long mp_off_t;
150
151
152
#define MP_STATE_PORT MP_STATE_VM
153
154
+#define MP_SSIZE_MAX (0x7fffffff)
155
+
156
// extra built in names to add to the global namespace
157
#define MICROPY_PORT_BUILTINS \
158
{ MP_ROM_QSTR(MP_QSTR_open), MP_ROM_PTR(&mp_builtin_open_obj) },
0 commit comments