1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-04-23 18:49:13 +00:00

fix(core): fix default (out of range) color used by gfxmmu

[no changelog]
This commit is contained in:
tychovrahe 2025-02-10 14:29:07 +01:00 committed by TychoVrahe
parent ee13872e90
commit 92da4d5d5a

View File

@ -40,7 +40,7 @@ bool display_gfxmmu_init(display_driver_t *drv) {
// GFXMMU peripheral initialization
drv->hlcd_gfxmmu.Instance = GFXMMU;
drv->hlcd_gfxmmu.Init.BlocksPerLine = GFXMMU_192BLOCKS;
drv->hlcd_gfxmmu.Init.DefaultValue = 0xFFFFFFFFU;
drv->hlcd_gfxmmu.Init.DefaultValue = 0;
drv->hlcd_gfxmmu.Init.Buffers.Buf0Address = (uint32_t)physical_frame_buffer_0;
drv->hlcd_gfxmmu.Init.Buffers.Buf1Address = (uint32_t)physical_frame_buffer_1;
drv->hlcd_gfxmmu.Init.Buffers.Buf2Address = 0;