InterviewSolution
Saved Bookmarks
| 1. |
What are the reasons for Interrupt Latency and how to reduce it? |
|
Answer» Following are the various causes of Interrupt Latency:
Interrupt latency can be reduced by ensuring that the ISR routines are short. When a lower priority interrupt gets triggered while a higher priority interrupt is getting executed, then the lower priority interrupt would get delayed resulting in increased latency. In such cases, having smaller ISR routines for lower priority interrupts would help to reduce the delay. Also, BETTER scheduling and synchronization algorithms in the processor CPU would help minimize the ISR latency. |
|