Skip to content

Commit 93b28af

Browse files
committed
drivers: display: temporary fix for PLLSAI on STM32F7
Temporary fix to configure PLLSAIR multipliers for correct LTDC pixel clock on STM32F746G Discovery board Signed-off-by: Tomislav Milkovic <[email protected]>
1 parent 737f6dc commit 93b28af

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

drivers/display/display_stm32_ltdc.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -262,9 +262,9 @@ static int stm32_ltdc_init(const struct device *dev)
262262
#if defined(CONFIG_SOC_SERIES_STM32F7X)
263263
LL_RCC_PLLSAI_Disable();
264264
LL_RCC_PLLSAI_ConfigDomain_LTDC(LL_RCC_PLLSOURCE_HSE,
265-
LL_RCC_PLLM_DIV_8,
266-
192,
267-
LL_RCC_PLLSAIR_DIV_4,
265+
LL_RCC_PLLM_DIV_25,
266+
384,
267+
LL_RCC_PLLSAIR_DIV_5,
268268
LL_RCC_PLLSAIDIVR_DIV_8);
269269

270270
LL_RCC_PLLSAI_Enable();

0 commit comments

Comments
 (0)