09-16-2022 02:04 AM
Hello TestStand-users,
I'm using LabVIEW to create a sequence in TestStand. The creating of a sequence-call is working, but I've found nothing to assign e.g a FileGlobals container to the properties of the module of the sequence-call.
The working steps are:
<Step Name="Call subSequence" Type="SequenceCall" Adapter="Sequence Adapter">
<Prop LookupString="Module.AsSequenceCallModule.SequenceName">pmax_V01</Prop>
<Prop LookupString="Module.SFPath">C:\\temp\\Meas_seq.seq</Prop>
<Prop LookupString="Module.UseCurFile">False</Prop>
<Prop LookupString="Module.SFPathExpr">False</Prop>
</Step>
Thanks in advance for any reply.
09-16-2022 11:57 AM
Hi,
The Step variables are stored in the respective step properties.For the sequence call step its stored as below :
You can access them as step.TS.SeqName.
Refer the APIs here to access the properties/variables :
C:\Users\Public\Documents\National Instruments\TestStand 2021 (32-bit)\Examples\TestStand API
Ravi