10-25-2013 12:18 AM - last edited on 11-03-2024 03:47 PM by Content Cleaner
Hello,
I have a set of tests, where I apply a voltage to many different pins (sequentially) while checking the response for each pin on a CAN bus. I implemented the tests in a loop, like this (pseudo-code):
paramsArray = initParamsFromFile()
For_each (params in paramsArray) Apply params.voltage to params.pinId Test canValue == params.expectedResponse End
paramsArray is an array of 50 containers (LabVIEW clusters), which is populated from values in a file. Each array element contains a pin ID, a voltage to apply, and a value to expect from the CAN bus.
However, in the log, the tests for all 50 pins end up with exactly the same Step Name and Step ID (I'm using the default TestStand table schemas).
So my questions are:
Thanks!
Solved! Go to Solution.
10-25-2013 08:25 AM
Hi,
1.) It is ok, you can do that because it will keep your sequence small as possible and (fast).
But you could also use the For-Each StepType so others will see more better the loop behaviour
The looping feature is a little bit more "hidden" in the settings-field. In large sequences this is
is often overlooked. It is just your choise. I am using both stuff.
2.) Just rename the step name in the PreExpression field by using the LoopIndex
Step.Name ="MyName:"+ Str(RunState.LoopIndex+1)
Hope this helps
Juergen
10-28-2013 12:28 PM
If you are using the reportext, I have added information in that field to distinquish the step in the loop.
Step.Result.ReportText = " Something meaningful' to recognize the step.
The downside if you get another field in the report. That would add up to 50+ more lines that could be an issue if you want a small report.
But I like j_dodek's idea of renaming the step on the fly. That is probably the route I would go.
Thanks,
PH
11-07-2013 02:17 AM