Quote Originally Posted by rsocor01 View Post
... My touch buttons work nicely but when I try to use GOSUB inside the ISR routine somehow PBP doesn't like it. I have my sub-routines outside the Disable-Enable of the ISR routine but it doesn't work.
If you are putting DISABLE/ENABLE around your interrupt handler ...
can I assume you are using ON INTERRUPT?

With ON INTERRUPT, the handler and any subroutines called by the handler MUST be inside DISABLE/ENABLE directives.

But if at all possible, GOSUB's should be avoided entirely in any interrupt handler.
<br>