cancel
Showing results for 
Search instead for 
Did you mean: 

Bugs for STM32H723H

Marco.D
Associate II

CubeMX doesn't let change the speed for the LTDC Pin PB11 to High, it only accepts "low",

When activating the ADC3, the init has 3 lines wrong:

static void MX_ADC3_Init(void)

{

..

 /* Peripheral clock enable */

 __HAL_RCC_ADC12_CLK_ENABLE(); ->> Should be __HAL_RCC_ADC3_CLK_ENABLE();

...

  /* Disable ADC deep power down (enabled by default after reset state) */

  LL_ADC_DisableDeepPowerDown(ADC1); -->> Should be ADC3

  /* Enable ADC internal voltage regulator */

  LL_ADC_EnableInternalRegulator(ADC1); -->> Should be ADC3

...

Regards,

Marco

1 ACCEPTED SOLUTION

Accepted Solutions
Mike_ST
ST Employee

I opened your project, and I could change PB11 speed.

For ADC3 problem, I think it has been detected and will be corrected in next CubeMX version 6.1.0

0693W0000059iHJQAY.png

View solution in original post

2 REPLIES 2
Mike_ST
ST Employee

I opened your project, and I could change PB11 speed.

For ADC3 problem, I think it has been detected and will be corrected in next CubeMX version 6.1.0

0693W0000059iHJQAY.png

Marco.D
Associate II

Hi Mike,

thanks.

Regarding PB11: I have the problem when G5 is configured on PC1, moving it to PB11 solved it for me as well

0693W0000059lM7QAI.png