mirror of
https://github.com/micropython/micropython.git
synced 2026-01-06 20:20:14 +01:00
Reworks handling and configuration of different board flash types in the Makefile, linker scripts and board makefile fragments.
15 lines
331 B
Makefile
15 lines
331 B
Makefile
MCU_SERIES = MIMXRT1052
|
|
MCU_VARIANT = MIMXRT1052DVL6B
|
|
|
|
MICROPY_FLOAT_IMPL = double
|
|
MICROPY_PY_MACHINE_SDCARD = 1
|
|
MICROPY_HW_FLASH_TYPE ?= qspi_nor_flash
|
|
MICROPY_HW_FLASH_SIZE ?= 0x800000 # 8MB
|
|
|
|
MICROPY_HW_SDRAM_AVAIL = 1
|
|
MICROPY_HW_SDRAM_SIZE = 0x2000000 # 32MB
|
|
|
|
MICROPY_PY_LWIP = 1
|
|
MICROPY_PY_USSL = 1
|
|
MICROPY_SSL_MBEDTLS = 1
|