Setup Handler/Prober Driver Entry Point (TSM)
- Updated2025-07-31
- 2 minute(s) read
Use the Setup entry point to perform required handler or prober initialization tasks.
The Setup entry point accepts the following parameters:
| Parameter | Type | Description |
|---|---|---|
| HandlerDriverData | Input or Output | Container that stores handler-specific settings, prober-specific settings, or
run-time data. The input value of this parameter is the same as the output value of
the HandlerDriverData parameter of the Configure
entry point. You can add run-time data to this container by using the TestStand API,
such as the PropertyObject.NewSubProperty method or
a PropertyObject Set value method, such as SetValNumber. TSM passes the output
value of this parameter into the HandlerDriverData parameter of the StartOfTest,
EndOfTest, and Cleanup entry points. TSM does not persist run-time data that
you add to HandlerDriverData in the Setup entry point. Do not enable the Check Type option for this parameter. Right-click the parameter and remove the checkmark from Check Type in the context menu to disable the Check Type option. |
| StationSettings | Input or Output | Instance of the NI_SemiconductorModule_StationSettings data type. The Setup entry point can access and modify the value of this parameter. |
| LotSettings | Input or Output | Instance of the NI_SemiconductorModule_LotSettings data type. The Setup entry point can access and modify the value of this parameter. Wafer probers typically set the values of the properties in the Standard.Wafer container to set the fields in the Wafer Configuration Record (WCR) of the STDF log file |
| SemiconductorModuleManager | Input or Output | Object reference to an instance of a Semiconductor Module Manager. Use this object reference with the TSM Application API to get information about the currently configured lot. |
Related Information
- Configure Handler/Prober Driver Entry Point (TSM)
- StartOfTest Handler/Prober Driver Entry Point (TSM)
- EndOfTest Handler/Prober Driver Entry Point (TSM)
- Cleanup Handler/Prober Driver Entry Point (TSM)
- NI_SemiconductorModule_StationSettings Data Type
- NI_SemiconductorModule_LotSettings Data Type
- Standard Test Data Format (STDF) Log (TSM)
- Using the Semiconductor Module Manager Object
- TSM Application API