Interrupts in PIC18Fxxx: Definition
Interrupts in PIC18Fxxx: Definition
Interrupts in PIC18Fxxx: Definition
Definition:-Interrupts are events that cause your program to stop what it is doing in order to
run an Interrupt Service Routine which will handle the event by taking whatever action is
required before finally returning control to your main program.
Interrupts require special functions to service the events that cause them:
ISRs must not have any parameters
ISRs must not be called by the main code
ISRs should not call other functions