circuitpython/ports/nrf/mpconfigport.mk

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

95 lines
2.1 KiB
Makefile
Raw Normal View History

2019-12-05 22:45:53 -05:00
# All linking can be done with this common templated linker script, which has
# parameters that vary based on chip and/or board.
LD_TEMPLATE_FILE = boards/common.template.ld
# 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
INTERNAL_LIBM = 1
2018-01-02 21:25:41 -05:00
# Number of USB endpoint pairs.
USB_NUM_ENDPOINT_PAIRS = 8
# All nRF ports have longints.
LONGINT_IMPL = MPZ
2020-04-29 23:31:34 -04:00
# The ?='s allow overriding in mpconfigboard.mk.
2020-04-29 23:31:34 -04:00
# Audio via PWM
CIRCUITPY_AUDIOIO = 0
2020-04-29 23:31:34 -04:00
CIRCUITPY_AUDIOBUSIO ?= 1
CIRCUITPY_AUDIOCORE ?= 1
CIRCUITPY_AUDIOMIXER ?= 1
CIRCUITPY_AUDIOPWMIO ?= 1
# Native BLEIO is not compatible with HCI _bleio.
CIRCUITPY_BLEIO_HCI = 0
2020-04-29 23:31:34 -04:00
CIRCUITPY_BLEIO ?= 1
# No I2CPeripheral implementation
CIRCUITPY_I2CPERIPHERAL = 0
2021-11-06 15:00:11 -04:00
CIRCUITPY_IS31FL3741 = 1
2020-04-29 23:31:34 -04:00
CIRCUITPY_RTC ?= 1
2019-03-01 23:46:57 -05:00
# frequencyio not yet implemented
CIRCUITPY_FREQUENCYIO = 0
CIRCUITPY_RGBMATRIX ?= 1
CIRCUITPY_ROTARYIO_SOFTENCODER = 1
CIRCUITPY_FRAMEBUFFERIO ?= 1
2020-04-01 12:57:52 -04:00
2021-04-13 08:56:21 -04:00
CIRCUITPY_COUNTIO ?= 1
CIRCUITPY_WATCHDOG ?= 1
2020-05-05 01:23:38 -04:00
2021-02-17 06:53:18 -05:00
# Sleep and Wakeup
2021-04-25 06:57:21 -04:00
CIRCUITPY_ALARM ?= 1
2021-02-17 06:53:18 -05:00
# Turn on the BLE file service
CIRCUITPY_BLE_FILE_SERVICE ?= 1
2021-06-25 17:58:32 -04:00
# Turn on the BLE serial service
CIRCUITPY_SERIAL_BLE ?= 1
CIRCUITPY_COMPUTED_GOTO_SAVE_SPACE ?= 1
2019-12-05 22:45:53 -05:00
# nRF52840-specific
2019-12-10 17:57:17 -05:00
ifeq ($(MCU_CHIP),nrf52840)
2019-12-05 22:45:53 -05:00
MCU_SERIES = m4
MCU_VARIANT = nrf52
MCU_SUB_VARIANT = nrf52840
2020-05-29 11:06:30 -04:00
# Fits on nrf52840 but space is tight on nrf52833.
CIRCUITPY_AESIO ?= 1
2019-12-05 22:45:53 -05:00
SD ?= s140
SOFTDEV_VERSION ?= 6.1.0
BOOT_SETTING_ADDR = 0xFF000
NRF_DEFINES += -DNRF52840_XXAA -DNRF52840
# 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
2019-12-05 22:45:53 -05:00
else
ifeq ($(MCU_CHIP),nrf52833)
MCU_SERIES = m4
MCU_VARIANT = nrf52
MCU_SUB_VARIANT = nrf52833
SD ?= s140
SOFTDEV_VERSION ?= 7.0.1
BOOT_SETTING_ADDR = 0x7F000
NRF_DEFINES += -DNRF52833_XXAA -DNRF52833
endif
2019-12-05 22:45:53 -05:00
endif