UART Interrupt dosen't cause lag ?
I run an example project which has 250 ms HAL_Delay with led blinking in while loop, and also an HAL_UART_Transmit_IT function which prints "Hello world!" with HAL_UART_TxCpltCallback calling itself.
250 ms led blink is not lagging and printing also works.
Quesition is; since interrupt also requires CPU, why led blinking is not lagging ?
Doesn't the interrupt just change the flow of the code which will be executed by the CPU?
