I am new ,in STM32 . I have an old board STM32 value discovery (STM32f100RBT6B) I wrote a code for LED ON But not working ,whats the wrong
#include <stdint.h>#define RCC_CFGR_BASE_ADDR 0x40012800UL#define RCC_CFGR_REG_OFFSET 0x04UL#define RCC_CFGR_REG_ADDR (RCC_CFGR_BASE_ADDR + RCC_CFGR_REG_OFFSET )#define RCC_APB2ENR_REG_OFFSET 0x18UL#define RCC_APB2ENR_REG_ADDR (RCC_CFGR_BASE_A...