02-12-2008 05:52 AM
02-12-2008 06:07 AM
02-18-2008 12:23 PM
Doesn't anybody has a hint for me why this program slows down my main program?
I really would appreciate someone's help!
Thanks.
Steffi
02-19-2008 07:32 AM
02-25-2008 05:40 AM
02-25-2008 06:06 AM
Hi steffi,
your two loops have both a "Wait until next ms multiple" with 500 ms connected. Why do you need this two extra loops? Avoid using local variables.
Mike
02-25-2008 06:39 AM
02-25-2008 07:14 AM
Hi steffi,
try to use shift register instead of local variables. If you have a control you can connect it directly to your calculation. The 2D Array is only an input and you never change a value in it, so use the input directly. I´ve removed some locals and think it should have the same functionallity as before (see the attachment). What do you make in the two parallel loops? Can you integrate them in the main loop? Which timing do you need there? You could use Queues to tranfer data between the loops.
Mike
02-29-2008 06:51 AM
03-10-2008 05:36 AM