Merge pull request #2867 from jepler/stm32f4xx-rgbmatrix

Fix build after #2831 (stm32f4xx rgbmatrix) broke it
This commit is contained in:
Dan Halbert 2020-05-08 11:28:17 -04:00 committed by GitHub
commit 6a5ab57c18
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 3 deletions

@ -1 +1 @@
Subproject commit 1b8f461f6401d6418bba5c6ec0108375c2c1b62f
Subproject commit 9f71088d2c32206c6f0495704ae0c040426d5764

View File

@ -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