What is the difference detween ISR & function call
Answers were Sorted based on User's Feedback
Answer / venkatesh
in isr there is no return value but in function call there
is return value
| Is This Answer Correct ? | 50 Yes | 12 No |
Answer / priyavadhanam
isr will be executed only when the system is interrupted
whereas the function call meant for any operations to
perform eventhough when there is no interrupt
| Is This Answer Correct ? | 29 Yes | 4 No |
Answer / vasanth
Simply, an ISR (interrupt service routine) can be defined
as a hardware function call. Generally, a CPU must
immediately pay attention to a hardware interrupt call. An
ISR is always given higher priority than a normal function
call.
| Is This Answer Correct ? | 25 Yes | 4 No |
Answer / senthilkumar.l
In function call the main program and the funtion have some
relations but in ISR there is no need for this so there is
no need of return value in ISR.
| Is This Answer Correct ? | 18 Yes | 5 No |
Answer / kumar
ISR is interrupt service routine. it is seperate code
written some where in the memory. if any interrupt comes
mp checks the priority of the interrupt and service it
meanwhile the content of the progaram counter value is
written in stack after executing isr ,execution transferred
to main program.
FUNCTION CALL is seperate thing. function call is seperate
code that has to be written at the end of function . for
example, in some programs we want to perform one operation
repeatedly at that time we perform that operation by
calling that function instead of writting many times.
| Is This Answer Correct ? | 9 Yes | 1 No |
Answer / kent sar
Here are some of the differences:
1. Fuction call has no inputs and return args
2. ISR is triggered by external events
3. ISR may need special interrupt handling upon entry and
exit.
i.e. IRQs masking to enable or disable interupts,
4. Function call and ISR stack frame are different
5. ISR returns with an interupt return (IRET) to
restored not only call stack context but also
interrupt level.
| Is This Answer Correct ? | 9 Yes | 2 No |
Answer / shams
isr : is the priority oriented. all other functions are
waiting ,to complete these routene, whenever we can call.
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / radhika.s
adding to d ans-11 i wud say that....an interrupt has no
relation with the current program or task being performed
by the microcontroller....it is an independent task or
program that is executed whenever the interrupt is invoked.
however, a function is a part of the program that is being
currently executed by the microcontroller, hence it is
local.it can be called only when the microcontroller is
executing the program in which it is contained..or is a
part of.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / achal
this is with reference to ARM7. The function call is made
when cpu is in User mode(non-priveleged).
But an ISR is called from an Interrupt handler and cpu is
in one of the priveleged modes. Whenever an interrupt
occurs the control moves to a particular address in vector
table.
regards
Achal
| Is This Answer Correct ? | 3 Yes | 2 No |
In 8085, power and frequency can be checked by connecting the wire with which pins?
Explain memory mapped i/o and i/o mapped i/o schemes?
What is the significance of the hold and hlda pins?
What is the difference between harvard architecture and von neumann architecture?
Define the jobs performed by the biu and eu in the 8086.
Define psp and its structure?
How can interrupts be classified in the 8086?
Differentiate between hardware and software interrupts and state examples for both?
What is the difference detween ISR & function call
17 Answers Bosch, General Motors GM, Infosys, Wipro,
What are the functions of RIM, SIM, IN?
After a pop instruction where does the stack pointer points?
In 8085 which is called as high order / low order register?