USART polling vs Interrupt
Posted on August 08, 2016 at 14:12Hi,I have implemented simple USART polling and interrupt method.// main functionwhile(1) { send_data(); //usartSendString(USART1,array,34); GPIOF->ODR ^= GPIO_Pin_10; }///simple USART polling functionvoid usartS...