Resolved! I am trying to transfer a character using uart in stm32f030 to pc , done with initialization with uart config there is no errors but I am not able to see data sent .please help
void uartInit(){ USART_InitTypeDef uartInitStruct; GPIO_InitTypeDef gpioInitStruct; RCC_AHBPeriphClockCmd(RCC_AHBPeriph_GPIOA, ENABLE); RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1, ENABLE); gpioInitStruct.GPIO_Pin = GPIO_Pin_9 | GPIO_Pin_10; gpioIni...