diff options
| author | Scott Shawcroft <scott@tannewt.org> | 2019-08-16 18:34:00 -0700 |
|---|---|---|
| committer | Scott Shawcroft <scott@tannewt.org> | 2019-08-22 14:23:27 -0700 |
| commit | 36a23e0fe3914b43645e51bf23a4d8bfec2db2c9 (patch) | |
| tree | cc8a4688cfcd84c29e034268a875a0ed1e6fb8aa /py | |
| parent | c247e7df9c043dc6a452a6cabc7bf232c0e9e085 (diff) | |
Rework refresh API and factor common display stuff out
NOT TESTED! Just compiles
Fixes #1691
Diffstat (limited to 'py')
| -rw-r--r-- | py/circuitpy_defns.mk | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/py/circuitpy_defns.mk b/py/circuitpy_defns.mk index d0f0cf7dc..e7b917512 100644 --- a/py/circuitpy_defns.mk +++ b/py/circuitpy_defns.mk @@ -364,6 +364,12 @@ SRC_SHARED_MODULE_ALL += \ touchio/__init__.c endif +# All possible sources are listed here, and are filtered by SRC_PATTERNS. +SRC_SHARED_MODULE_INTERNAL = \ +$(filter $(SRC_PATTERNS), \ + displayio/display_core.c \ +) + ifeq ($(INTERNAL_LIBM),1) SRC_LIBM = \ $(addprefix lib/,\ |
