InterviewSolution
Saved Bookmarks
| 1. |
Is it possible to pass a parameter to ISR or return a value from it? |
|
Answer» An ISR by nature does not ALLOW anything to pass nor does it return anything. This is because ISR is a routine called whenever HARDWARE or software EVENTS occur and is not in CONTROL of the code. |
|