2017-12-21 07:49:14 -05: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
|
2018-01-02 21:25:41 -05:00
|
|
|
|
2019-02-15 18:55:10 -05:00
|
|
|
INTERNAL_LIBM = 1
|
2018-01-02 21:25:41 -05:00
|
|
|
|
2018-10-19 21:46:22 -04:00
|
|
|
USB_SERIAL_NUMBER_LENGTH = 16
|
2019-02-15 18:55:10 -05:00
|
|
|
|
2019-02-17 17:29:28 -05:00
|
|
|
# All nRF ports have longints.
|
|
|
|
LONGINT_IMPL = MPZ
|
|
|
|
|
2019-02-15 18:55:10 -05:00
|
|
|
# No DAC, so no regular audio.
|
|
|
|
CIRCUITPY_AUDIOIO = 0
|
|
|
|
|
|
|
|
# No I2S yet.
|
|
|
|
CIRCUITPY_AUDIOBUSIO = 0
|
|
|
|
|
|
|
|
# No I2CSlave implementation
|
|
|
|
CIRCUITPY_I2CSLAVE = 0
|
|
|
|
|
|
|
|
# nvm not yet implemented
|
|
|
|
CIRCUITPY_NVM = 0
|
|
|
|
|
2019-03-29 16:41:29 -04:00
|
|
|
# rtc not yet implemented
|
2019-02-02 02:38:10 -05:00
|
|
|
CIRCUITPY_RTC = 1
|
2019-03-01 23:46:57 -05:00
|
|
|
|
|
|
|
# frequencyio not yet implemented
|
|
|
|
CIRCUITPY_FREQUENCYIO = 0
|
2019-03-21 11:22:58 -04:00
|
|
|
|
|
|
|
# CircuitPython doesn't yet support NFC so force the NFC antenna pins to be GPIO.
|
|
|
|
# See https://github.com/adafruit/circuitpython/issues/1300
|
|
|
|
# Defined here because system_nrf52840.c doesn't #include any of our own include files.
|
|
|
|
CFLAGS += -DCONFIG_NFCT_PINS_AS_GPIOS
|