Table of Contents

Method MeasureAndPublishVoltage

Namespace
NationalInstruments.SemiconductorTestLibrary.InstrumentAbstraction.Digital
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

sessionsBundle DigitalSessionsBundle

The DigitalSessionsBundle object.

publishedDataId string

The unique data id to use when publishing.

voltageMeasurements double[][]

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

sessionsBundle DigitalSessionsBundle

The DigitalSessionsBundle object.

publishedDataId string

The unique data id to use when publishing.

Returns

PinSiteData<double>

The pin-site aware voltage measurements.