File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -142,6 +142,7 @@ extern void common_hal_mcu_enable_interrupts(void);
142
142
#define MICROPY_PY_GC (1)
143
143
// Supplanted by shared-bindings/math
144
144
#define MICROPY_PY_IO (CIRCUITPY_IO)
145
+ #define MICROPY_PY_IO_IOBASE (CIRCUITPY_IO_IOBASE)
145
146
// In extmod
146
147
#define MICROPY_PY_JSON (CIRCUITPY_JSON)
147
148
#define MICROPY_PY_MATH (0)
Original file line number Diff line number Diff line change @@ -302,6 +302,10 @@ CFLAGS += -DCIRCUITPY_IMAGECAPTURE=$(CIRCUITPY_IMAGECAPTURE)
302
302
CIRCUITPY_IO ?= $(CIRCUITPY_JSON )
303
303
CFLAGS += -DCIRCUITPY_IO=$(CIRCUITPY_IO )
304
304
305
+ # io.IOBase - enhances JPEG support
306
+ CIRCUITPY_IO_IOBASE ?= $(call enable-if-all,$(CIRCUITPY_IO ) $(CIRCUITPY_JPEGIO ) )
307
+ CFLAGS += -DCIRCUITPY_IO_IOBASE=$(CIRCUITPY_IO_IOBASE )
308
+
305
309
CIRCUITPY_IPADDRESS ?= $(CIRCUITPY_WIFI )
306
310
CFLAGS += -DCIRCUITPY_IPADDRESS=$(CIRCUITPY_IPADDRESS )
307
311
You can’t perform that action at this time.
0 commit comments