summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Cross <sean@xobs.io>2020-05-07 17:02:40 +0800
committerSean Cross <sean@xobs.io>2020-05-12 09:31:51 +0800
commitf7fcd43516f8aa51184ae45fe16d5b56af92f2d9 (patch)
treed307d7275e0820b491ac8648c94a0e71e743cc9b
parent370fc7293a9ebe8015b70b9579f15386e59cbfea (diff)
nrf: simmel: disable SPIM3
Disable the SPIM3 controller to avoid needing to dedicate 8 kB to the SPIM3 block. Signed-off-by: Sean Cross <sean@xobs.io>
-rw-r--r--ports/nrf/boards/simmel/mpconfigboard.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/nrf/boards/simmel/mpconfigboard.mk b/ports/nrf/boards/simmel/mpconfigboard.mk
index 83fda6bda..36a6fadda 100644
--- a/ports/nrf/boards/simmel/mpconfigboard.mk
+++ b/ports/nrf/boards/simmel/mpconfigboard.mk
@@ -30,4 +30,4 @@ CIRCUITPY_ULAB = 0
# These defines must be overridden before mpconfigboard.h is included, which is
# why they are passed on the command line.
-CFLAGS += -DSPIM3_BUFFER_SIZE=0 -DSOFTDEVICE_RAM_SIZE='(32*1024)'
+CFLAGS += -DSPIM3_BUFFER_SIZE=0 -DSOFTDEVICE_RAM_SIZE='(32*1024)' -DNRFX_SPIM3_ENABLED=0