2016-07-01 11:26 AM
For example, if I call the function HAL_UART_Receive_IT() with a buffer size of 16.
When will the interrupt be triggered? Is it when all 16 bytes are filled up? Or when the Usart finished received all the data? Will the interrupt get triggered in the middle of receiving a message? Also when the interrupt is finished, how do I clear the buffer? Thanks.2016-07-01 12:02 PM
The architecture will INTERRUPT for each byte, the library CALLBACK will occur when it has the 16 you asked for, right?