File tree Expand file tree Collapse file tree 4 files changed +9
-2
lines changed Expand file tree Collapse file tree 4 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,10 @@ ifndef CIRCUITPY_AUDIOMP3
29
29
CIRCUITPY_AUDIOMP3 = 0
30
30
endif
31
31
32
+ ifndef CIRCUITPY_BUILTINS_POW3
33
+ CIRCUITPY_BUILTINS_POW3 = 0
34
+ endif
35
+
32
36
ifndef CIRCUITPY_FREQUENCYIO
33
37
CIRCUITPY_FREQUENCYIO = 0
34
38
endif
Original file line number Diff line number Diff line change @@ -184,7 +184,7 @@ typedef long mp_off_t;
184
184
// Turning off FULL_BUILD removes some functionality to reduce flash size on tiny SAMD21s
185
185
#define MICROPY_BUILTIN_METHOD_CHECK_SELF_ARG (CIRCUITPY_FULL_BUILD)
186
186
#define MICROPY_CPYTHON_COMPAT (CIRCUITPY_FULL_BUILD)
187
- #define MICROPY_PY_BUILTINS_POW3 (CIRCUITPY_FULL_BUILD )
187
+ #define MICROPY_PY_BUILTINS_POW3 (CIRCUITPY_BUILTINS_POW3 )
188
188
#define MICROPY_COMP_FSTRING_LITERAL (MICROPY_CPYTHON_COMPAT)
189
189
#define MICROPY_MODULE_WEAK_LINKS (0)
190
190
#define MICROPY_PY_ALL_SPECIAL_METHODS (CIRCUITPY_FULL_BUILD)
Original file line number Diff line number Diff line change @@ -90,6 +90,9 @@ CFLAGS += -DCIRCUITPY_BLEIO=$(CIRCUITPY_BLEIO)
90
90
CIRCUITPY_BOARD ?= 1
91
91
CFLAGS += -DCIRCUITPY_BOARD=$(CIRCUITPY_BOARD )
92
92
93
+ CIRCUITPY_BUILTINS_POW3 ?= $(CIRCUITPY_FULL_BUILD )
94
+ CFLAGS += -DCIRCUITPY_BUILTINS_POW3=$(CIRCUITPY_BUILTINS_POW3 )
95
+
93
96
CIRCUITPY_BUSIO ?= 1
94
97
CFLAGS += -DCIRCUITPY_BUSIO=$(CIRCUITPY_BUSIO )
95
98
You can’t perform that action at this time.
0 commit comments