Hi.
I work with PCA10040 and SKD_14.2.
I use UARTE with easy DMA.
I see big enough delay between sending nrf_drv_uart_rx_abort and entering to UART event hanler. What is the latency should be in this case?
Thanks.
Hi.
I work with PCA10040 and SKD_14.2.
I use UARTE with easy DMA.
I see big enough delay between sending nrf_drv_uart_rx_abort and entering to UART event hanler. What is the latency should be in this case?
Thanks.
The smallest interrupt latency on Cortex M4 is 12 CPU cycles. There could be few more cycles added on chip design when adding more peripheral lines.
If you see significantly more latency, then it means that the CPU was busy handling other handler which is clearly higher in priority than the UART interrupt handler.
The smallest interrupt latency on Cortex M4 is 12 CPU cycles. There could be few more cycles added on chip design when adding more peripheral lines.
If you see significantly more latency, then it means that the CPU was busy handling other handler which is clearly higher in priority than the UART interrupt handler.