summaryrefslogtreecommitdiff
path: root/py
diff options
context:
space:
mode:
authorJeff Epler <jepler@gmail.com>2020-10-10 14:30:37 -0500
committerJeff Epler <jepler@gmail.com>2020-10-10 14:30:37 -0500
commit5e38bb98cbcc2d1ab607b19d11e628def4f48f4c (patch)
tree3fbfa42b1f7ecd3df344feafe558466493e9c622 /py
parentc7d87cea627f6eea827ae397e2e6549a9eb8fa53 (diff)
rgbmatrix: update protomatter to 1.0.5 tag
this is compile-tested on stm32f405 feather matrixportal nrf52840 feather but not actually tested-tested.
Diffstat (limited to 'py')
-rw-r--r--py/circuitpy_defns.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/py/circuitpy_defns.mk b/py/circuitpy_defns.mk
index 76c0a4db6..525e0b2bf 100644
--- a/py/circuitpy_defns.mk
+++ b/py/circuitpy_defns.mk
@@ -528,10 +528,10 @@ SRC_MOD += $(addprefix lib/mp3/src/, \
$(BUILD)/lib/mp3/src/buffers.o: CFLAGS += -include "py/misc.h" -D'MPDEC_ALLOCATOR(x)=m_malloc(x,0)' -D'MPDEC_FREE(x)=m_free(x)'
endif
ifeq ($(CIRCUITPY_RGBMATRIX),1)
-SRC_MOD += $(addprefix lib/protomatter/, \
+SRC_MOD += $(addprefix lib/protomatter/src/, \
core.c \
)
-$(BUILD)/lib/protomatter/core.o: CFLAGS += -include "shared-module/rgbmatrix/allocator.h" -DCIRCUITPY -Wno-missing-braces
+$(BUILD)/lib/protomatter/src/core.o: CFLAGS += -include "shared-module/rgbmatrix/allocator.h" -DCIRCUITPY -Wno-missing-braces
endif
# All possible sources are listed here, and are filtered by SRC_PATTERNS.