Posted on September 08, 2015 at 12:25
Hello,
I've used the STD peripheral libraries before and successfully generating interrupts from UART
//snippet 1
void USART1_IRQHandler(void){
char chee;
if(USART_GetITStatus(USART1, U...
Posted on September 09, 2015 at 18:18Thanks shahrzad,Ive gone through the UM and examples many times, all I understand is to use HAL_UART_Receive_IT in the main code and keep it in a loop. which I see that as not an interrupt. I understand HAL_UART_...