How to escape USART1 interrupt?
Posted on August 06, 2012 at 22:51Below is my USART1 handler: void USART1_IRQHandler(void) { if(USART_GetITStatus(USART1, USART_IT_RXNE) != RESET){ USART_SendString(USART1, ''\r\n======Blow ME======\r\n''); USART_ITConfig( USART1...