Method TurnOffOutput
- Assembly
- NationalInstruments.SemiconductorTestLibrary.Extensions.dll
TurnOffOutput(DigitalSessionsBundle, double?)
Sets the Selected Function mode to Off to put the digital driver into a non-drive state, disables the active load, disconnects the PPMU, and closes the I/O switch connecting the instrument channel.
public static void TurnOffOutput(this DigitalSessionsBundle sessionsBundle, double? settlingTimeInSeconds = null)
Parameters
sessionsBundle
DigitalSessionsBundleThe DigitalSessionsBundle object.
settlingTimeInSeconds
double?The settling time in seconds. Null means immediately turning off operation to settle.
Remarks
Note that the output channel is still physically connected after calling this method. To physically disconnect the output channel, call DisconnectOutput() method.
DigitalSessionsBundle myDutPin = new TSMSessionManager().Digital("MyDutPin");
myDutPin.TurnOffOutput(settlingTimeInSeconds: 0.1);