How to make NUCLEO-H745ZI-Q do anything?
I've been trying to make LED blink. GPIO PE1. So i wrote this code:
HAL_GPIO_TogglePin(GPIOE, GPIO_PIN_1);
HAL_Delay(200);
When i'm creating procject for this board it creates two procject for each core CM7 and CM4 each with it's main.c. I can debug each core but i can't figure out how to make both of them to work at the same time. CM7 seems to bo working fine when debuging but it stopping at: timeout = 0xFFFF when i hit play it runs but led is not blinking.
When i try to debug CM4 whitout any code exept generated one, it stops at: _HAL_RCC_HSEM_CLK_ENABLE(); when i hit play im receivng: Break at address "0xa05f0000" with no debug information available, or outside of program code.
I've followed wiki, and few tutorials but this is just not working none of 3 LED is not blinking, i've tried few other GPIO's, i've updated ST-LINK, i've beend trying different PC's, no luck.
Can you give me a hint, maybe my STM is broken, example procjects are not working when i hit debug nothing happens and Debug for STM32.... is not even showing in the context menu.
Do anyone had H745ZI-Q board? I've been programing arduino and its simple and works everytime but this... i cant even make LED to blink.