OS_LeaveInt ()
For PICC and PICC18 this service must be called at the end of an interrupt routine. This service restores FSR (FSR0 for PIC18) value (stored by OS_EnterInt).
Only in interrupt
None
nothing
void interrupt isr (void) { static char a, b; // some variables // After defining all variables we need to call service OS_EnterInt(); /*...*/ // Before exit from interrupt we need to call service OS_LeaveInt(); }