Hi :)
I have a timer1 function that I need to exit from several
points depending on the value of some variables.
Is it ok to exit a timer interrupt from several points using
return; ?? I know it is ok from a regular function.
SIGNAL(SIG_OUTPUT_COMPARE1A) //this code runs 10,000/sec { ......... return; ........ return; ........ return; }