Resolved! Blinking LED
Hi all,Just started with bare metal programming of stm32f411re.Uploaded the following code to blink the onboard led of the nucleo board.Code:#include "stm32f4xx.h" // Device headervoid delayMs(int delay);int main (void){RCC->AHB1ENR |= 1;GPIO...