mirror of
https://github.com/micropython/micropython.git
synced 2026-01-05 03:30:14 +01:00
This is difficult to implement on cmake-based ports, and having the list
of variants in mpconfigboard.{cmake,mk} duplicates information that's
already in board.json.
This removes the existing query-variants make target from stm32 & rp2
and the definition of BOARD_VARIANTS from the various board files.
Also renames the cmake variable to MICROPY_BOARD_VARIANT to match other
variables such as MICROPY_BOARD. The make variable stays as
BOARD_VARIANT.
This work was funded through GitHub Sponsors.
Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
11 lines
211 B
Makefile
11 lines
211 B
Makefile
MCU_SERIES = SAMD51
|
|
CMSIS_MCU = SAMD51J19A
|
|
LD_FILES = boards/samd51x19a.ld sections.ld
|
|
TEXT0 = 0x4000
|
|
|
|
# MicroPython settings
|
|
MICROPY_PY_NETWORK ?= 1
|
|
MICROPY_PY_NETWORK_NINAW10 ?= 1
|
|
|
|
MICROPY_HW_CODESIZE ?= 496K
|