File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,6 @@ extern void common_hal_mcu_enable_interrupts(void);
70
70
#define MICROPY_ERROR_REPORTING (CIRCUITPY_FULL_BUILD ? MICROPY_ERROR_REPORTING_NORMAL : MICROPY_ERROR_REPORTING_TERSE)
71
71
#define MICROPY_FLOAT_HIGH_QUALITY_HASH (0)
72
72
#define MICROPY_FLOAT_IMPL (MICROPY_FLOAT_IMPL_FLOAT)
73
- #define MICROPY_PY_DOUBLE_TYPECODE (CIRCUITPY_FULL_BUILD ? 1 : 0)
74
73
#define MICROPY_GC_ALLOC_THRESHOLD (0)
75
74
#define MICROPY_GC_SPLIT_HEAP (1)
76
75
#define MICROPY_GC_SPLIT_HEAP_AUTO (1)
@@ -262,6 +261,10 @@ typedef long mp_off_t;
262
261
#define MICROPY_PY_COLLECTIONS_DEQUE_SUBSCR (CIRCUITPY_FULL_BUILD)
263
262
#endif
264
263
264
+ #ifndef MICROPY_PY_DOUBLE_TYPECODE
265
+ #define MICROPY_PY_DOUBLE_TYPECODE (CIRCUITPY_FULL_BUILD ? 1 : 0)
266
+ #endif
267
+
265
268
#ifndef MICROPY_PY_FUNCTION_ATTRS
266
269
#define MICROPY_PY_FUNCTION_ATTRS (CIRCUITPY_FULL_BUILD)
267
270
#endif
You can’t perform that action at this time.
0 commit comments