STM32H747XI Eval board: trying to blink LEDs by different cores, with Keil + CubeMX: should I do MX_GPIO_Init() by both cores or just one?
For now, both cores start simultaneously, then CM4 stops, CM7 wakes it up. Both main() functions have similar code but for different LEDs:CM4: MX_GPIO_Init(); while (1) { HAL_GPIO_TogglePin(myPK3_GPIO_Port,myPK3_Pin); //Toggle LED HAL_D...