Nucleo-H755ZI Configure Power Supply
For the Nucleo-H755ZI, I use the 'PWR_DIRECT_SMPS_SUPPLY' choice in 'HAL_PWREx_ConfigSupply', like:
HAL_PWREx_ConfigSupply(PWR_DIRECT_SMPS_SUPPLY);
With this setting, the board works fine and keeps working after flashing.
If you choose for example 'PWR_LDO_SUPPLY', you would next un-brick your board, using STM32CubeProgrammer, selecting Mode 'Power Down' and erasing the chip.
That way you can flash it again within STM32CubeIDE, after correcting the power setting.
Since I can't find the 'PWR_DIRECT_SMPS_SUPPLY' option in STM32CubeMX, I always need to modify it manually.
In STM32CubeMX I only find these settings:
- PWR_LDO_SUPPLY
- PWR_EXTERNAL_SOURCE_SUPPLY
- PWR_SMPS_1V8_SUPPLIES_LDO
- PWR_SMPS_2V5_SUPPLIES_LDO
- PWR_SMPS_1V8_SUPPLIES_EXT_AND_LDO
- PWR_SMPS_2V5_SUPPLIES_EXT_AND_LDO
- PWR_SMPS_1V8_SUPPLIES_EXT
- PWR_SMPS_2V5_SUPPLIES_EXT
It seems I'm missing
- PWR_DIRECT_SMPS_SUPPLY
Do I overlook some other setting?

