Page 1 of 1
Connection Point
Posted: Mon Mar 04, 2013 5:06 pm
by asbase
I put a connection point label "A" at my main program and I try to jump out from my timer interrupt subroutine by jump to the connection point "A". The problem is I can't get the connection label "A" in the jump to connection point list box.
Please advice
Re: Connection Point
Posted: Mon Mar 04, 2013 5:13 pm
by Benj
Hello,
You should not use connection points to jump from macro to macro. Jumping from an interrupt back into your main loop will cause stack problems so I would avoid this at all costs. The interrupt routine should run completley independant of the main program loop. What is it your trying to do?