circuitpython/ports/stm/boards/espruino_pico/mpconfigboard.mk

27 lines
617 B
Makefile
Raw Normal View History

2020-03-11 18:13:06 -04:00
USB_VID = 0x239A
USB_PID = 0x808E
USB_PRODUCT = "Espruino Pico"
USB_MANUFACTURER = "Espruino"
INTERNAL_FLASH_FILESYSTEM = 1
MCU_SERIES = F4
MCU_VARIANT = STM32F401xE
MCU_PACKAGE = UFQFPN48
2020-08-27 16:34:37 -04:00
OPTIMIZATION_FLAGS = -Os
LD_COMMON = boards/common_default.ld
# use for internal flash
LD_FILE = boards/STM32F401xd_fs.ld
2020-03-11 18:13:06 -04:00
# Disable ulab as we're nearly out of space on this board due to
# INTERNAL_FLASH_FILESYSTEM. It can probably be reenabled if we enable
# lto for this port, and if other stuff hasn't been added in the
# meantime
CIRCUITPY_ULAB = 0
2021-01-17 01:00:06 -05:00
CIRCUITPY_BUSDEVICE = 0
2021-02-11 16:30:27 -05:00
CIRCUITPY_FRAMEBUFFERIO = 0
2020-12-15 13:23:49 -05:00
SUPEROPT_GC = 0