STM32H747 generate code issue with STM32Cube and Keil
I have tried to generate STM32H747I-DISCO's GPIO code.
After loading flash, it can be executed normally.
But after power on the MCU, the code can't be executed and the MCU can't be target with ST-link.
I must pull-up boot0 and erase flash before I can reconnect to the MCU.
What settings are I missing?
Library is STM32Cube FW_H7 V1.7.0.
I only set PI12(M4) and PI15(M7) as GPIO output.
Set CPU1 as 480M and CPU2 as 240M.


Add code in while loop as below:
M7
HAL_Delay(500);
HAL_GPIO_TogglePin(GPIOI, GPIO_PIN_15);
M4
HAL_Delay(500);
HAL_GPIO_TogglePin(GPIOI, GPIO_PIN_12);
Because M4 Load device issue, so I have add the Flash Download setting.
