04-25-2016 07:56 PM - edited 04-25-2016 07:57 PM
Hi, Guys, I'm a newbie to TS but familiar with LabVIEW.
I'd like to transfer StepName, Description, limits, test value, test result (Pass/Fail/Done...) and test duration for every step. There must be some local variables to store them, could you show me how to do this?
I wonder if there are big trouble for parallel mode or a sequence calls a SubSequence.
Below are my consideration:
1, once finishing loading Seq, I can get all StepName, Description and limits, then display them in the table immediately;
2, while executing or finishing a step, update its relate info to the table, including test value, test result and test duration.
04-26-2016 04:37 AM - edited 04-26-2016 04:38 AM
This sounds pretty much like you are programming a LabVIEW OI for your sequence/ framework.
I would suggest using User Messages to LabVIEW: http://www.ni.com/tutorial/4532/en/
Be aware of the fact, that some items will change even during execution of a single step, e.g. TestStatus
I have realized a similar application with user messages being sent by custom step types.
09-05-2016 10:47 PM
Thanks for your advice!