Teledyne LeCroy WaveSurfer Automation Command User Manual

Page 17

Advertising
background image

Automation Command and Query Reference Manual - Control Reference

' Visual Basic Script
Set app = CreateObject("LeCroy.XStreamDSO")

' Set the coupling of the Auxiliary socket, when used as an input, to
ground.
' In this condition, no input signal reaches the instrument.
app.Acquisition.AuxOutput.AuxInCoupling = "GND"

Example

Values

DC50

DC, 50ohms coupling

GND

Grounded

AuxMode

Enum

Configures AUX Output type in WR and WS series of scopes.

Description

' Visual Basic Script
Set app = CreateObject("LeCroy.XStreamDSO")

' Set the Auxiliary output to trigger output signal.
app.Acquisition.AuxOutput.AuxMode = "TriggerOut"

Example

Values

Off

No output

PassFail

Pulse on Pass fail condition

TriggerEnabled

Trigger enabled signal from trigger circuitry.

TriggerOut

Internal trigger output signal from trigger circuitry

CalMode

Enum

Configures Cal Output type in WR and WS series of scopes.

Description

' Follwoing example will set CAL output to 1 KHz, 0.5V square wave.
' Visual Basic Script
Set app = CreateObject("LeCroy.XStreamDSO")

' Set cal output to Square wave
app.Acquisition.AuxOutput.CalMode = "Square"

' Set cal output amplitude to 0.5 V with 1 MOhm impedence
app.Acquisition.AuxOutput.Amplitude = "0.5"

' Set cal output frequency to 1 KHz
app.Acquisition.AuxOutput.Frequency = "1000"

Example

Values

Square

Square wave

1-10

918499 RevA

Advertising