2024-11-11 01:39 AM
Dear all!
this is the first time i handle with STM32H7 series. in my project control ILI9488 by TouchGFX platform, 4 mosfets, 1 Led. in the first step, i try to blink a led at pin PB5 but seem unsuccess. i don't know how to fix, so can you share me my mistake and how to fix it. in attach file have schematic. can you take a look and share me your input.
2024-11-16 05:53 AM
Hello,
Replace manually the Flash latency from 0 to 3: FLASH_LATENCY_3
if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_0) != HAL_OK)
by
if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_3) != HAL_OK)
As CubeMx don't let you change it, I need to check internally if it's an issue or not.
2024-11-21 03:10 AM
Hello,
Getting back to you regarding CubeMx. There is an issue in CubeMx V6.12.1.
For System clock @240MHz/VOS2, the HPRE prescaler needs to be 2.
So in your ioc file set HPRE to 2 instead of 1.
The issue seems to be fixed in an internal version that will be available soon on st.com.
If this solved your issue/answered your question, please accept it as solution.
Thank you.