Resolved! UART issues-I am trying to discern the difference between a transmit and a receive interrupt flag. I am using the following code if(__HAL_UART_GET_IT_SOURCE(&huart4, UART_IT_RXNE)) { function} It triggers on both receive and transmit interrupts
Shouldn't just the RXNE flag trigger with this code? or does the outgoing transmit message also generate an RXNE flag?Thanks!