Advanced Embedded Systems Question:
Download Questions PDF

Do you know how does the interrupt architecture works?

Advanced Embedded Systems Interview Question
Advanced Embedded Systems Interview Question

Answer:

Interrupt architecture allows the use of interrupt by the processor whenever an Input/output is ready for the processing. The processor in this case calls a special function to handle the request that comes and leave all the work that is getting performed at that time. The special function that is known as interrupt handler or the interrupt service routine consists of all the input, and output queries, or the interrupts handled by it. It is an efficient and simple way to handle the interrupts. It uses only one function to deal with the interrupts. There are properties of starvation that can creep in when handling the input/output requests. The data can be lost if the interrupt doesn’t get handled before the time runs out. This is a technique that is use to deal with the short processes that involve input and output.

Download Advanced Embedded Systems Interview Questions And Answers PDF

Previous QuestionNext Question
Explain me what is the function of simple thread poll in embedded system?Write a program to show the functionality of Power-save super loop?