From f9a1592162c6aae9b612ab0e20fef7682a2f4f5b Mon Sep 17 00:00:00 2001 From: Martin Milata Date: Mon, 17 Jul 2023 18:20:31 +0200 Subject: [PATCH] build(core): fix DISC1 boardloader build [no changelog] --- core/site_scons/boards/discovery.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/site_scons/boards/discovery.py b/core/site_scons/boards/discovery.py index f43c46ca6..36cb2c927 100644 --- a/core/site_scons/boards/discovery.py +++ b/core/site_scons/boards/discovery.py @@ -35,7 +35,9 @@ def configure( defines += [f"HW_REVISION={hw_revision}"] sources += [f"embed/trezorhal/stm32f4/displays/{display}"] sources += ["embed/trezorhal/stm32f4/displays/ili9341_spi.c"] + sources += ["embed/trezorhal/stm32f4/dma.c"] sources += ["embed/trezorhal/stm32f4/sdram.c"] + sources += ["vendor/micropython/lib/stm32lib/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c"] if "input" in features_wanted: sources += ["embed/trezorhal/stm32f4/i2c.c"]