Skip to main content
Marco.D
Associate II
October 28, 2020
Solved

Bugs for STM32H723H

  • October 28, 2020
  • 2 replies
  • 950 views

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

This topic has been closed for replies.
Best answer by Mike_ST

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

2 replies

Mike_ST
Mike_STBest answer
ST Technical Moderator
October 29, 2020

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

In order to give better visibility on the answered topics, please click on 'Best answer' on the reply which solved your issue or answered your question. 
Marco.D
Marco.DAuthor
Associate II
October 29, 2020

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