8000 Disable terminal on itsybitsy depending on language · adafruit/circuitpython@bc465e5 · GitHub
[go: up one dir, main page]

Skip to content

Commit bc465e5

Browse files
committed
Disable terminal on itsybitsy depending on language
.. as was already done for metro m4 express. Soon we're likely to need to do this across the board for 512kB flash SAMD51 parts.
1 parent bc691c2 commit bc465e5

File tree

Collapse file tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

ports/atmel-samd/boards/itsybitsy_m4_express/mpconfigboard.mk

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,13 @@ CIRCUITPY_GIFIO = 0
1616
CIRCUITPY_JPEGIO = 0
1717

1818
CIRCUITPY_BITBANG_APA102 = 1
19+
20+
# We don't have room for the fonts for terminalio for certain languages,
21+
# so turn off terminalio, and if it's off and displayio is on,
22+
# force a clean build.
23+
# Note that we cannot test $(CIRCUITPY_DISPLAYIO) directly with an
24+
# ifeq, because it's not set yet.
25+
ifneq (,$(filter $(TRANSLATION),ja ko ru))
26+
CIRCUITPY_TERMINALIO = 0
27+
RELEASE_NEEDS_CLEAN_BUILD = $(CIRCUITPY_DISPLAYIO)
28+
endif

0 commit comments

Comments
 (0)
0