From 4946d186f2583e0020042cac0d7128210d372e60 Mon Sep 17 00:00:00 2001 From: cepetr Date: Wed, 24 Apr 2024 13:27:56 +0200 Subject: [PATCH] fixup! feat(core): refactor display drivers --- core/site_scons/boards/trezor_t3t1_revE.py | 8 ++++---- core/site_scons/boards/trezor_t3t1_v4.py | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/core/site_scons/boards/trezor_t3t1_revE.py b/core/site_scons/boards/trezor_t3t1_revE.py index f3a5f0555..0af6572ae 100644 --- a/core/site_scons/boards/trezor_t3t1_revE.py +++ b/core/site_scons/boards/trezor_t3t1_revE.py @@ -48,10 +48,10 @@ def configure( if "new_rendering" in features_wanted: sources += ["embed/trezorhal/xdisplay_legacy.c"] - sources += ["embed/trezorhal/stm32f4/display/st-7789/display_fb.c"] - sources += ["embed/trezorhal/stm32f4/display/st-7789/display_driver.c"] - sources += ["embed/trezorhal/stm32f4/display/st-7789/display_io.c"] - sources += ["embed/trezorhal/stm32f4/display/st-7789/display_panel.c"] + sources += ["embed/trezorhal/stm32u5/display/st-7789/display_fb.c"] + sources += ["embed/trezorhal/stm32u5/display/st-7789/display_driver.c"] + sources += ["embed/trezorhal/stm32u5/display/st-7789/display_io.c"] + sources += ["embed/trezorhal/stm32u5/display/st-7789/display_panel.c"] sources += [ "embed/trezorhal/stm32u5/display/st-7789/panels/lx154a2422.c", ] diff --git a/core/site_scons/boards/trezor_t3t1_v4.py b/core/site_scons/boards/trezor_t3t1_v4.py index 1bca7620a..ba1dd672a 100644 --- a/core/site_scons/boards/trezor_t3t1_v4.py +++ b/core/site_scons/boards/trezor_t3t1_v4.py @@ -49,10 +49,10 @@ def configure( if "new_rendering" in features_wanted: sources += ["embed/trezorhal/xdisplay_legacy.c"] - sources += ["embed/trezorhal/stm32f4/display/st-7789/display_fb.c"] - sources += ["embed/trezorhal/stm32f4/display/st-7789/display_driver.c"] - sources += ["embed/trezorhal/stm32f4/display/st-7789/display_io.c"] - sources += ["embed/trezorhal/stm32f4/display/st-7789/display_panel.c"] + sources += ["embed/trezorhal/stm32u5/display/st-7789/display_fb.c"] + sources += ["embed/trezorhal/stm32u5/display/st-7789/display_driver.c"] + sources += ["embed/trezorhal/stm32u5/display/st-7789/display_io.c"] + sources += ["embed/trezorhal/stm32u5/display/st-7789/display_panel.c"] sources += [ "embed/trezorhal/stm32u5/display/st-7789/panels/lx154a2422.c", ]