mirror of
https://github.com/micropython/micropython.git
synced 2026-01-06 20:20:14 +01:00
And use these to initialize the LUT table properly for the various flash types. The different flash types differ by 3 parameters. Thus it is easier to just keep one copy of the qspiflash_config structure with the LUT table and update it during flash initialisation as needed. Signed-off-by: robert-hh <robert@hammelrath.com>
19 lines
456 B
Makefile
19 lines
456 B
Makefile
MCU_SERIES = MIMXRT1052
|
|
MCU_VARIANT = MIMXRT1052DVL6B
|
|
|
|
MICROPY_FLOAT_IMPL = double
|
|
MICROPY_HW_FLASH_TYPE = qspi_hyper_flash
|
|
MICROPY_HW_FLASH_SIZE = 0x4000000 # 64MB
|
|
|
|
MICROPY_HW_SDRAM_AVAIL = 1
|
|
MICROPY_HW_SDRAM_SIZE = 0x2000000 # 32MB
|
|
MICROPY_HW_FLASH_CLK = kFlexSpiSerialClk_133MHz
|
|
MICROPY_HW_FLASH_QE_CMD = 0x01
|
|
MICROPY_HW_FLASH_QE_ARG = 0x40
|
|
|
|
MICROPY_PY_LWIP = 1
|
|
MICROPY_PY_SSL = 1
|
|
MICROPY_SSL_MBEDTLS = 1
|
|
|
|
FROZEN_MANIFEST ?= $(BOARD_DIR)/manifest.py
|