circuitpython/ports/atmel-samd/boards/feather_m4_can/mpconfigboard.mk

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
737 B
Makefile
Raw Normal View History

USB_VID = 0x239A
USB_PID = 0x80CE
USB_PRODUCT = "Feather M4 CAN"
USB_MANUFACTURER = "Adafruit Industries LLC"
CHIP_VARIANT = SAME51J19A
CHIP_FAMILY = same51
QSPI_FLASH_FILESYSTEM = 1
EXTERNAL_FLASH_DEVICES = GD25Q16C
LONGINT_IMPL = MPZ
2022-02-27 21:34:30 -05:00
CIRCUITPY__EVE = 1
2020-09-18 11:57:15 -04:00
CIRCUITPY_CANIO = 1
CIRCUITPY_SYNTHIO = 0
2023-07-25 15:03:47 -04:00
CIRCUITPY_GIFIO = 0
2022-05-31 17:48:41 -04:00
2022-06-01 14:12:14 -04:00
CIRCUITPY_LTO_PARTITION = one
# We don't have room for the fonts for terminalio for certain languages,
# so turn off terminalio, and if it's off and displayio is on,
# force a clean build.
# Note that we cannot test $(CIRCUITPY_DISPLAYIO) directly with an
# ifeq, because it's not set yet.
ifneq (,$(filter $(TRANSLATION),ja ko ru))
CIRCUITPY_TERMINALIO = 0
RELEASE_NEEDS_CLEAN_BUILD = $(CIRCUITPY_DISPLAYIO)
endif