cancel
Showing results for 
Search instead for 
Did you mean: 

Start a new project with STM32H743VIT6

khanhcong861989
Associate II

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.

11 REPLIES 11

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.

To give better visibility on the answered topics, please click on "Accept as Solution" on the reply which solved your issue or answered your question.
SofLit
ST Employee

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.

SofLit_0-1732187325432.png

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.

To give better visibility on the answered topics, please click on "Accept as Solution" on the reply which solved your issue or answered your question.