Method MeasureAndPublishVoltage
- Assembly
- NationalInstruments.SemiconductorTestLibrary.Extensions.dll
MeasureAndPublishVoltage(DigitalSessionsBundle, string, out double[][])
Measures the voltage on the target pin(s) and immediately publishes the results using the publishedDataId passed in.
public static void MeasureAndPublishVoltage(this DigitalSessionsBundle sessionsBundle, string publishedDataId, out double[][] voltageMeasurements)
Parameters
sessionsBundleDigitalSessionsBundleThe DigitalSessionsBundle object.
publishedDataIdstringThe unique data id to use when publishing.
voltageMeasurementsdouble[][]The returned voltage measurements.
Remarks
Use this method to save test time if the measurement results are not needed for any other operations. Otherwise, use the override for this method that returns PinSiteData.
MeasureAndPublishVoltage(DigitalSessionsBundle, string)
Measures the voltage on the target pin(s) and immediately publishes the results using the publishedDataId passed in.
public static PinSiteData<double> MeasureAndPublishVoltage(this DigitalSessionsBundle sessionsBundle, string publishedDataId)
Parameters
sessionsBundleDigitalSessionsBundleThe DigitalSessionsBundle object.
publishedDataIdstringThe unique data id to use when publishing.
Returns
- PinSiteData<double>
The pin-site aware voltage measurements.