Posted on March 25, 2015 at 17:39Hello all, I 'm novice and using STM32L152RE to do a communication between 2 USARTs I use USART2 for recieving GPS Data and I would like to echo all recievied data without parsing on PC Terminal by using USART3 bu...
Posted on April 02, 2015 at 15:46
while(USART_GetFlagStatus(USART3, USART_FLAG_RXNE) == RESET); // Wait for Char
Data = USART_ReceiveData(USART3); // Collect Char
while(USART_GetFlagStatus(USART2, USART_FLAG_TXE) == RESET); // Wait for Empty
USAR...
Posted on April 02, 2015 at 10:55thanks for your response I have tested it and unfortunately it comes up only one weird character on output thank you anyway!
Posted on April 01, 2015 at 19:02 The original post was too long to process during our migration. Please click on the provided URL to read the original post. https://st--c.eu10.content.force.com/sfc/dist/version/download/?oid=00Db0000000YtG6&ids=0...