diff options
| author | Dan Halbert <halbert@adafruit.com> | 2020-05-08 11:28:17 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-08 11:28:17 -0400 |
| commit | 6a5ab57c18b5a4ba1c80a951ec0ee655677f7d83 (patch) | |
| tree | 1cc82517194954fbbc5ad76a0da27bd2c41fb7e9 | |
| parent | 7eb60b62b867a5e16138fc0b09a7c043f791b5f5 (diff) | |
| parent | 182ae10080d85adc34d7865c9b8cccf4b3d2f89c (diff) | |
Merge pull request #2867 from jepler/stm32f4xx-rgbmatrix
Fix build after #2831 (stm32f4xx rgbmatrix) broke it
| m--------- | lib/protomatter | 0 | ||||
| -rw-r--r-- | ports/stm/mpconfigport.mk | 7 |
2 files changed, 5 insertions, 2 deletions
diff --git a/lib/protomatter b/lib/protomatter -Subproject 1b8f461f6401d6418bba5c6ec0108375c2c1b62 +Subproject 9f71088d2c32206c6f0495704ae0c040426d576 diff --git a/ports/stm/mpconfigport.mk b/ports/stm/mpconfigport.mk index d23c14b7b..06dace843 100644 --- a/ports/stm/mpconfigport.mk +++ b/ports/stm/mpconfigport.mk @@ -3,12 +3,15 @@ LONGINT_IMPL = MPZ INTERNAL_LIBM = 1 USB_SERIAL_NUMBER_LENGTH = 24 +ifeq ($(MCU_VARIANT),STM32F405xx) + CIRCUITPY_FRAMEBUFFERIO = 1 + CIRCUITPY_RGBMATRIX = 1 +endif + ifeq ($(MCU_SERIES),F4) # Not yet implemented common-hal modules: CIRCUITPY_AUDIOBUSIO = 0 CIRCUITPY_AUDIOIO = 0 - CIRCUITPY_FRAMEBUFFERIO = 1 - CIRCUITPY_RGBMATRIX = 1 CIRCUITPY_ROTARYIO = 0 CIRCUITPY_RTC = 0 CIRCUITPY_FREQUENCYIO = 0 |
