Minor redundancy fix
This commit is contained in:
parent
b6f07a1c41
commit
bd0df9e3bc
|
@ -64,22 +64,12 @@ ifndef CIRCUITPY_SAMD
|
||||||
CIRCUITPY_SAMD = 1
|
CIRCUITPY_SAMD = 1
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifndef CIRCUITPY_ULAB
|
|
||||||
ifneq ($(CIRCUITPY_FULL_BUILD),0)
|
|
||||||
CIRCUITPY_ULAB = 1
|
|
||||||
endif
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifndef CIRCUITPY_RGBMATRIX
|
ifndef CIRCUITPY_RGBMATRIX
|
||||||
ifneq ($(CIRCUITPY_FULL_BUILD),0)
|
CIRCUITPY_RGBMATRIX = $(CIRCUITPY_FULL_BUILD)
|
||||||
CIRCUITPY_RGBMATRIX = 1
|
|
||||||
endif
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifndef CIRCUITPY_FRAMEBUFFERIO
|
ifndef CIRCUITPY_FRAMEBUFFERIO
|
||||||
ifneq ($(CIRCUITPY_FULL_BUILD),0)
|
CIRCUITPY_FRAMEBUFFERIO = $(CIRCUITPY_FULL_BUILD)
|
||||||
CIRCUITPY_FRAMEBUFFERIO = 1
|
|
||||||
endif
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
endif # samd51
|
endif # samd51
|
||||||
|
|
|
@ -319,6 +319,7 @@ CFLAGS += -DCIRCUITPY_SERIAL_UART=$(CIRCUITPY_SERIAL_UART)
|
||||||
ifndef CIRCUITPY_ULAB
|
ifndef CIRCUITPY_ULAB
|
||||||
CIRCUITPY_ULAB = $(CIRCUITPY_FULL_BUILD)
|
CIRCUITPY_ULAB = $(CIRCUITPY_FULL_BUILD)
|
||||||
endif
|
endif
|
||||||
|
CFLAGS += -DCIRCUITPY_ULAB=$(CIRCUITPY_ULAB)
|
||||||
|
|
||||||
# Enabled micropython.native decorator (experimental)
|
# Enabled micropython.native decorator (experimental)
|
||||||
ifndef CIRCUITPY_ENABLE_MPY_NATIVE
|
ifndef CIRCUITPY_ENABLE_MPY_NATIVE
|
||||||
|
|
Loading…
Reference in New Issue