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

