Connection Point

For Flowcode users to discuss projects, flowcharts, and any other issues related to Flowcode 5.
To post in this forum you must have a registered copy of Flowcode 5 or higher.

Moderator: Benj

Post Reply
asbase
Posts: 20
Joined: Sun Jun 03, 2012 12:53 pm
Location: Malaysia
Has thanked: 13 times
Contact:

Connection Point

Post 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

User avatar
Benj
Matrix Staff
Posts: 15312
Joined: Mon Oct 16, 2006 10:48 am
Location: Matrix TS Ltd
Has thanked: 4803 times
Been thanked: 4314 times
Contact:

Re: Connection Point

Post 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?

Post Reply