Question
Hi All, I am trying to use STM32F429I-DISC1 with STM32Cube IDE, I am newbie and trying to work on the Blink LED of the onbard LED of MCU, but its not working
After so many trying I am unable to do so. When I build my program LED just doesn't blink (however the demo program showing on LCD disappears when building the program).
I have configured Pin 13 and 14 of GPIOG as output anduses these 2 lines to toggle the LED:
HAL_GPIO_TogglePin(GPIOG, GPIO_PIN_13);
HAL_Delay(500);
Can anyone help me out in what else do I have to configure and if I am missing anything
Ankit