How to minimize interrupt latency?

vijay
vijay

Posted On: Apr 11, 2020

 

You can minimize interrupt latency by making your interrupt routine as short as possible if your hardware does not allow interrupt priorities because in this case a started interrupt routine can not be interrupted by another (higher priority) interrupt.

Also, avoid disabling interrupts in any routines if possible because interrupts will have to wait until allowed again.

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    Cyient Embedded C Interview Questions

    What is RTOS?

    A real-time operating system (RTOS) is a running system that supports a particular skill within a particularized time restraint. For instance, an operating system can be produced to assure that a part...

    Cyient Embedded C Interview Questions

    What is ISR?

    ISR stands for "Interrupt Service Routine." An ISR (also termed an interrupt handler) is a software method requested by an intervention offer from a hardware method. It examines the application and as...

    Cyient Embedded C Interview Questions

    What is return type of ISR?

    ISR does not return anything. An ISR returns nothing because there is no caller in the code to read the returned values....