mirror of
https://github.com/micropython/micropython.git
synced 2025-12-16 01:40:14 +01:00
Prune trailing whitespace across the whole project (almost), done
automatically with:
grep -IUrl --color "[[:blank:]]$" --exclude-dir=.git --exclude=*.exp |\
xargs sed -i 's/[[:space:]]*$//'
Exceptions:
- Skip third-party code in lib/ and drivers/cc3100/
- Skip generated code in bluetooth_init_cc2564C_1.5.c
- Preserve command output whitespace in docs, eg:
docs/esp8266/tutorial/repl.rst
Signed-off-by: Phil Howard <phil@gadgetoid.com>
18 lines
379 B
Makefile
18 lines
379 B
Makefile
MCU_SERIES = MIMXRT1052
|
|
MCU_VARIANT = MIMXRT1052DVL6B
|
|
|
|
MICROPY_FLOAT_IMPL = double
|
|
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_SSL = 1
|
|
MICROPY_SSL_MBEDTLS = 1
|
|
|
|
FROZEN_MANIFEST ?= $(BOARD_DIR)/manifest.py
|
|
|
|
CFLAGS += -DSPI_RETRY_TIMES=1000000
|