2017-07-15 17:03:24 -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.
|
2018-05-21 23:58:03 -04:00
|
|
|
|
2018-05-22 08:04:14 -04:00
|
|
|
ifeq ($(LONGINT_IMPL),NONE)
|
2017-07-15 17:03:24 -04:00
|
|
|
MPY_TOOL_LONGINT_IMPL = -mlongint-impl=none
|
2017-10-31 18:46:42 -04:00
|
|
|
endif
|
2017-10-23 12:29:17 -04:00
|
|
|
|
2018-05-22 08:04:14 -04:00
|
|
|
ifeq ($(LONGINT_IMPL),MPZ)
|
2017-10-31 18:46:42 -04:00
|
|
|
MPY_TOOL_LONGINT_IMPL = -mlongint-impl=mpz
|
|
|
|
endif
|
2017-10-23 12:29:17 -04:00
|
|
|
|
2018-05-22 09:35:29 -04:00
|
|
|
ifeq ($(LONGINT_IMPL),LONGLONG)
|
2018-05-21 23:58:03 -04:00
|
|
|
MPY_TOOL_LONGINT_IMPL = -mlongint-impl=longlong
|
|
|
|
endif
|
|
|
|
|
2019-03-27 17:54:36 -04:00
|
|
|
# Put samd21-only choices here.
|
2019-03-27 18:19:39 -04:00
|
|
|
ifeq ($(CHIP_FAMILY),samd21)
|
2019-03-27 17:54:36 -04:00
|
|
|
# frequencyio not yet verified as working on SAMD21.
|
2019-09-01 18:39:20 -04:00
|
|
|
CIRCUITPY_AUDIOMIXER = 0
|
2019-07-17 15:02:15 -04:00
|
|
|
CIRCUITPY_FREQUENCYIO = 0
|
2019-08-18 08:44:10 -04:00
|
|
|
CIRCUITPY_TOUCHIO_USE_NATIVE = 1
|
2019-09-04 21:45:16 -04:00
|
|
|
|
|
|
|
# SAMD21 needs separate endpoint pairs for MSC BULK IN and BULK OUT, otherwise it's erratic.
|
2019-10-01 04:00:32 -04:00
|
|
|
USB_MSC_EP_NUM_OUT = 1
|
2019-03-27 17:54:36 -04:00
|
|
|
endif
|
|
|
|
|
2019-02-17 23:48:08 -05:00
|
|
|
# Put samd51-only choices here.
|
|
|
|
ifeq ($(CHIP_FAMILY),samd51)
|
|
|
|
CIRCUITPY_SAMD = 1
|
2019-08-18 08:44:10 -04:00
|
|
|
CIRCUITPY_TOUCHIO_USE_NATIVE = 0
|
2019-02-17 23:48:08 -05:00
|
|
|
endif
|
|
|
|
|
2017-10-31 18:46:42 -04:00
|
|
|
INTERNAL_LIBM = 1
|
2018-10-04 07:59:25 -04:00
|
|
|
|
2018-10-19 21:46:22 -04:00
|
|
|
USB_SERIAL_NUMBER_LENGTH = 32
|