summaryrefslogtreecommitdiff
path: root/ports/nrf/mpconfigport.mk
diff options
context:
space:
mode:
authorDan Halbert <halbert@halwitz.org>2020-04-21 17:37:22 -0400
committerDan Halbert <halbert@halwitz.org>2020-04-21 17:38:20 -0400
commit38ec3bc57476c6fde45cd7d722370a5408fd8e10 (patch)
treebea75dc24a3f94c14e564cb885af3fde87f9c033 /ports/nrf/mpconfigport.mk
parent1a71c8c51577cc7014d5db1c05084778c0b977e9 (diff)
further ringbuf cleanup
Diffstat (limited to 'ports/nrf/mpconfigport.mk')
-rw-r--r--ports/nrf/mpconfigport.mk12
1 files changed, 10 insertions, 2 deletions
diff --git a/ports/nrf/mpconfigport.mk b/ports/nrf/mpconfigport.mk
index 5ca1f0f35..186867fb0 100644
--- a/ports/nrf/mpconfigport.mk
+++ b/ports/nrf/mpconfigport.mk
@@ -24,7 +24,7 @@ CIRCUITPY_AUDIOIO = 0
# The ifndef's allow overriding in mpconfigboard.mk.
-ifndef
+ifndef CIRCUITPY_BLEIO
CIRCUITPY_BLEIO = 1
endif
@@ -51,8 +51,17 @@ endif
# frequencyio not yet implemented
CIRCUITPY_FREQUENCYIO = 0
+ifndef CIRCUITPY_PROTOMATTER
CIRCUITPY_PROTOMATTER = 1
+endif
+
+ifndef CIRCUITPY_FRAMEBUFFERIO
CIRCUITPY_FRAMEBUFFERIO = 1
+endif
+
+ifndef CIRCUITPY_ULAB
+CIRCUITPY_ULAB = 1
+endif
# nRF52840-specific
@@ -72,5 +81,4 @@ NRF_DEFINES += -DNRF52840_XXAA -DNRF52840
# Defined here because system_nrf52840.c doesn't #include any of our own include files.
CFLAGS += -DCONFIG_NFCT_PINS_AS_GPIOS
-CIRCUITPY_ULAB = 1
endif