Table of Contents

Method MeasureAndPublishCurrent

Namespace
NationalInstruments.SemiconductorTestLibrary.InstrumentAbstraction.Digital
Assembly
NationalInstruments.SemiconductorTestLibrary.Extensions.dll

MeasureAndPublishCurrent(DigitalSessionsBundle, string, out double[][])

Measures the current on the target pin(s) and immediately publishes the results using the publishedDataId passed in.

public static void MeasureAndPublishCurrent(this DigitalSessionsBundle sessionsBundle, string publishedDataId, out double[][] currentMeasurements)

Parameters

sessionsBundle DigitalSessionsBundle

The DigitalSessionsBundle object.

publishedDataId string

The unique data id to be used when publishing.

currentMeasurements double[][]

The returned current 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.

MeasureAndPublishCurrent(DigitalSessionsBundle, string)

Measures the current on the target pin(s) and immediately publishes the results using the publishedDataId passed in.

public static PinSiteData<double> MeasureAndPublishCurrent(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 current measurements.