From 9d02fa6dff7c8ab80535e64dfafef529d36b90d7 Mon Sep 17 00:00:00 2001 From: tychovrahe Date: Tue, 10 Dec 2024 11:36:54 +0100 Subject: [PATCH] fixup! feat(core): display driver for T3W1 --- core/embed/io/display/ltdc_dsi/display_gfxmmu.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/core/embed/io/display/ltdc_dsi/display_gfxmmu.c b/core/embed/io/display/ltdc_dsi/display_gfxmmu.c index 7635a701f6..78ce5a7ef8 100644 --- a/core/embed/io/display/ltdc_dsi/display_gfxmmu.c +++ b/core/embed/io/display/ltdc_dsi/display_gfxmmu.c @@ -17,10 +17,6 @@ bool display_gfxmmu_init(display_driver_t *drv) { /* GFXMMU clock enable */ __HAL_RCC_GFXMMU_CLK_ENABLE(); - /* Enable GFXMMU interrupt */ - NVIC_SetPriority(GFXMMU_IRQn, IRQ_PRI_NORMAL); - NVIC_EnableIRQ(GFXMMU_IRQn); - /* GFXMMU peripheral initialization */ drv->hlcd_gfxmmu.Instance = GFXMMU; drv->hlcd_gfxmmu.Init.BlocksPerLine = GFXMMU_192BLOCKS;