mirror of
https://github.com/micropython/micropython.git
synced 2026-01-05 03:30:14 +01:00
Code size limits are charged to: - SAMD21: 184K -> 248K - SAMD51x19: 368K -> 496K - SAMD51x20: 368K -> 1008K Signed-off-by: robert-hh <robert@hammelrath.com>
10 lines
225 B
Makefile
10 lines
225 B
Makefile
MCU_SERIES = SAMD51
|
|
CMSIS_MCU = SAMD51J19A
|
|
LD_FILES = boards/samd51x19a.ld sections.ld
|
|
TEXT0 = 0x4000
|
|
|
|
# The ?='s allow overriding in mpconfigboard.mk.
|
|
# MicroPython settings
|
|
MICROPY_VFS_LFS1 ?= 1
|
|
MICROPY_HW_CODESIZE ?= 496K
|