I don't know how to use HAL_UART_Receive();
Posted on September 22, 2015 at 11:25 I am trying to receive string from my PC then put it on the LCD. This my code : char recieve[10]; while(__HAL_UART_GET_FLAG(&huart2,UART_FLAG_RXNE)==0){}; for(i=0;i<=9;i++) { HAL_UART_Receive(&huart2,(u...