Please explain what is interrupt latency? How can you reduce it?
No Answer is Posted For this Question
Be the First to Post Answer
Tell me what are buses used for communication in embedded system?
What are the commonly found errors in embedded systems?
look at following code void foo(void) { unsigned int a = 6; int b = -20; int c = (a+b > 6) ? 1:0; } o/p is 1 why explain promotion rules
Tell me why cannot arrays be passed by values to functions?
Tell me what are the qualifiers in c?
Explain me why is model transformations used in the embedded system?
Tell me what is top half & bottom half of a kernel?
what is meant by a forward reference in c?
What is an anti-aliasing filter?
How can you ensure that debugging a program while it's being used will not affect its functionality?
Tell me what happens when recursive functions are declared inline?
A=7; b=8; x=a++-b; printf(“%d”, x ); what does this code give as output?