Hi,
I would like to know if it would be possible to convert a text based test script to a TestStand sequence? The conversion program would be developen with LabVIEW.
The test script would have a syntax similar to Perl. We would like to be able to declare variables, include for, if-then-else and while statements.
For example a non TestStand programmer could write this script:
$count = 10;
$instrumentAnswer
instrumentAnswer = ReadInstrument(0,1)
while ($instrumentAnswer >= 0 and count >= 0) {
WriteInstrument(0,1)
instrumentAnswer = ReadInstrument(0,1)
WriteInstrument(2,10)
instrumentAnswer = ReadInstrument(6,0)
$count--;
}
Do you think it is possible and do you have any hints on how to do this?
Thanks!
-M