01-20-2013 04:13 PM
Is there any way to make a test step that is a comparison with an OR and NOT condition?
The code module returns a value for PCB revision and the acceptible values are not contigious.
For example, PCB revision must be 14, 15, or 17 but not 16.
Solved! Go to Solution.
01-21-2013 04:23 AM
No, the Numeric Limit Step does not provide this feature.
I propose to generate a custom step type derived from the Pass/Fail Step. This step will use a custom written post step substep for this specific comparison. If you implement a good module for this, you can use an edit substep to configure the comparsion (e.g. how many versions are valid, what are their values).
hope this helps,
Norbert
01-21-2013 07:29 AM
I have not yet used a custom step type so will need to look into this.
Are custom step types saved with sequences or do they have to be installed separatly to each station?
I am working with an existing production system and need to push the new sequence out to all stations remotly.
01-21-2013 08:00 AM
Custom Step Types are a type so they get copied to any sequence file that has an instance of them. So when you deploy you will be fine without having to deploy any ini files.
In fact you could just create the new step in the sequence file only and not worry about doing the ini files.
01-23-2013 12:14 AM
You can use a pass fail step with expressions ( check attachment).
This step passes only for numeric value 14,15 and 17.
Hope this helps.