Question
STM32H747I board how to program
Hello I just got a STM32H747I-DISCO board. I have no idea how to program it. I am using STM32Cube ide. When I use only CM4 main to led blink debugger gives error. When I write led blinking code to both CM4 main and CM7 main then this time debugger is starting fine. However, nothing happens to LED's. How can I program this board with 2 cores? Is there a relevant tutorial or a document that I can learn it? This is the led blink code:
/* Infinite loop */
/* USER CODE BEGIN WHILE */
while (1)
{
/* USER CODE END WHILE */
HAL_GPIO_TogglePin(GPIOI, GPIO_PIN_12);
HAL_GPIO_TogglePin(GPIOI, GPIO_PIN_13);
HAL_GPIO_TogglePin(GPIOI, GPIO_PIN_14);
HAL_GPIO_TogglePin(GPIOI, GPIO_PIN_15);
HAL_Delay(1000);
/* USER CODE BEGIN 3 */
}