Technical data
360 Agilent Infiniium 90000 Series Oscilloscopes Programmer's Reference
19 InfiniiScan (ISCan) Commands
:ISCan:RUNT:ULEVel
Command :ISCan:RUNT:ULEVel <upper_level>
The :ISCan:RUNT:ULEVel (upper level) command sets the upper level limit
for the Runt trigger mode.
<upper_level> A real number.
Example The following example sets the upper level value used by the Runt trigger
mode to 500 mV.
myScope.WriteString ":ISCAN:RUNT:ULEVEL 500E-3"
Query :ISCan:RUNT:ULEVel?
The query returns the current upper level value used by the Runt trigger.
Returned Format
[:ISCan:RUNT:ULEVel] <upper_level><NL>
Example The following example returns the current upper level used by the Runt
trigger and prints the result to the controller's screen.
myScope.WriteString ":SYSTEM:HEADER OFF" ' Response headers off.
myScope.WriteString ":ISCAN:RUNT:ULEVel?"
varValue = myScope.ReadNumber
Debug.Print FormatNumber(varValue, 0)