mirror of
https://github.com/micropython/micropython.git
synced 2025-12-13 08:20:13 +01:00
The same MicroPython firmware is built for the HE but with slightly different options, for example no USB. Signed-off-by: iabdalkader <i.abdalkader@gmail.com>
14 lines
402 B
Makefile
14 lines
402 B
Makefile
# Enable/disable extra modules and features
|
|
|
|
# MicroPython feature configurations
|
|
MICROPY_ROM_TEXT_COMPRESSION ?= 1
|
|
MICROPY_FLOAT_IMPL ?= double
|
|
|
|
# VFS support.
|
|
MICROPY_VFS_FAT ?= 1
|
|
MICROPY_VFS_LFS2 ?= 1
|
|
|
|
# File containing description of content to be frozen into firmware.
|
|
FROZEN_MANIFEST ?= boards/manifest.py
|
|
MICROPY_MANIFEST_MCU_CORE := $(shell echo $(MCU_CORE) | awk -F'_' '{print tolower($$2)}')
|