Hello All, I am new to this community as well as STM32F407 Discovery board . I am trying to write a program to turn ON LED without using any library. I wrote the below code, But I am not able to compile it .
#define RCC_AHB1ENR (*(volatile unsigned long *)0x40023830)#define GPIOD_MODER (*(volatile unsigned long *)0x40020C00)#define GPIOD_OTYPER (*(volatile unsigned long *)0x40020C04)#define GPIOD_OSPEEDR (*(volatile unsigned long *)0x40020C08)#define G...