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 |
Signal voltage ranges for a logic high and for a logic low in RS-232C standard are
Mention the addressing modes of 8085?
Which are sixteen bit registers of 8085?
Introduction of 8051 microcontroller architecture?
What is meant by a bus?
How the register in the 8086 are grouped together?
What is the purpose of data moving instructions? Name any two such instructions?
In how many ways computer soft wares are categorized?
What is the RST for the TRAP?
Can 8259 be interfaced with 8085 via the trap pin?
Where 8086 mostly used & tell application of 8086?
Explain why do you use two ground pins in microprocessor 8086?