circuitpython/ports/stm32f4/mpconfigport.mk

33 lines
928 B
Makefile
Raw Normal View History

2019-06-28 15:36:08 -04:00
# Define an equivalent for MICROPY_LONGINT_IMPL, to pass to $(MPY-TOOL) in py/mkrules.mk
# $(MPY-TOOL) needs to know what kind of longint to use (if any) to freeze long integers.
# This should correspond to the MICROPY_LONGINT_IMPL definition in mpconfigport.h.
MPY_TOOL_LONGINT_IMPL = -mlongint-impl=mpz
2019-07-24 14:21:27 -04:00
# Internal math library is substantially smaller than toolchain one
2019-06-28 15:36:08 -04:00
INTERNAL_LIBM = 1
2019-07-24 14:21:27 -04:00
# Chip supplied serial number, in bytes
2019-08-15 16:35:01 -04:00
USB_SERIAL_NUMBER_LENGTH = 24
2019-06-28 15:36:08 -04:00
2019-07-24 14:21:27 -04:00
# Longints can be implemented as mpz, as longlong, or not
2019-06-28 15:36:08 -04:00
LONGINT_IMPL = MPZ
2019-07-24 14:21:27 -04:00
#Reduced feature set for early port
CIRCUITPY_MINIMAL_BUILD = 1
2019-06-28 15:36:08 -04:00
CIRCUITPY_BOARD = 1
CIRCUITPY_DIGITALIO = 1
2019-09-10 19:48:24 -04:00
CIRCUITPY_ANALOGIO = 1
CIRCUITPY_MICROCONTROLLER = 1
CIRCUITPY_BUSIO = 1
CIRCUITPY_PULSEIO = 1
2019-09-20 15:55:11 -04:00
CIRCUITPY_OS = 1
2019-10-09 14:52:30 -04:00
CIRCUITPY_STORAGE = 1
CIRCUITPY_RANDOM = 1
CIRCUITPY_USB_HID = 1
CIRCUITPY_USB_MIDI = 1
CIRCUITPY_NEOPIXEL_WRITE = 1
2019-10-09 14:52:30 -04:00
2019-08-07 18:12:13 -04:00
#ifeq ($(MCU_SUB_VARIANT), stm32f412zx)
2019-08-18 19:08:27 -04:00
#endif