Posted on October 20, 2014 at 11:20
I'm new in ST world. I'm trying to work with UART, so I wrote this code to initializate UART and to send ''Hello''. I'am using STM32F0 board.
#include ''stm32f0xx_gpio.h''
#include ''stm32f0xx_rcc.h...
Posted on October 22, 2014 at 21:09
Finally I resolved the problem.
I was mixing up interrupt status flags with the flags used for synchronous polling. To send data we must first poll the
USART_FLAG_TXE
flag for the
transmit data...