12-18-2012 10:14 AM
Hello everyone, I have two projects (one is in 64bit LV, the other is in 32bit LV) that I run side-by-side on the same machine. The 64bit project controls a camera, and the 32bit project calls some code to do processing. I would like to send a trigger to make the 64bit program wait until some of the raw data buffers are processed before sending more data to the 32bit project. Unfortuantely cannot recomplie the code for 64bit processing.
Are there any good examplse of doing this? I was thinking of using some sort of shared variable setup, but I really dont like shared variables.
Thanks
Solved! Go to Solution.
12-18-2012 10:36 AM
Well, I can't help you in everything.
But I think you should at least consider using some sort shared variables setup. Maybe they fit to your situation. BTW, if you post your code it might help.
Best regards!
12-19-2012 12:21 PM
I am not against using shared variables, I am just looking for a solution in which they can be used as triggers for parts of code in other vi's.
Thanks,
12-19-2012 03:26 PM
You can send commands through tcp/ip to the different processes, e.g.
Network shared variable is probably slightly easier, but not alot.
/Y
12-27-2012 12:13 PM
I figured it out, I ended up using tcp/ip and some network shared variables for less imporntant stuff.