mirror of
https://github.com/micropython/micropython.git
synced 2025-12-16 01:40:14 +01:00
The definition uses the internal oscillator for clock and only internal flash for the file system. It works at SAMD51J20 device as well, only that fewer pins are accessible. Tested with a SAMD51J20 board. Signed-off-by: robert-hh <robert@hammelrath.com>
14 lines
380 B
Makefile
14 lines
380 B
Makefile
MCU_SERIES = SAMD51
|
|
CMSIS_MCU = SAMD51P20A
|
|
LD_FILES = boards/samd51x19a.ld sections.ld
|
|
TEXT0 = 0x4000
|
|
|
|
|
|
# The ?='s allow overriding in mpconfigboard.mk.
|
|
# MicroPython settings
|
|
# The size of a MCU flash filesystem will be
|
|
# 1008k - MICROPY_HW_CODESIZE - MICROPY_HW_VFSROMSIZE
|
|
# The default for MICROPY_HW_VFSROMSIZE is 64K
|
|
MICROPY_HW_CODESIZE ?= 752K
|
|
MICROPY_HW_VFSROMSIZE ?= 128K
|