I am using STM32F030C6T6 I am unable to configure usart1 in the code. None of the registers get configured for usart1 below is the code Please Help. I am using Standard Peripheral Libraries.
void RCC_Configuration(void){ RCC_DeInit(); //RCC_AdjustHSICalibrationValue(0x00); RCC_HSICmd(ENABLE); while(RCC_GetFlagStatus(RCC_FLAG_HSIRDY) == RESET) {;} //PLL out = (8M/2)*12 = 48 MHz RCC_PLLConfig(RCC_PLLSource_HSI_Div2,RCC_PLLMul_12)...