Technical data

InfiniiScan (ISCan) Commands 19
Agilent Infiniium 90000 Series Oscilloscopes Programmer's Reference 357
:ISCan:RUNT:HYSTeresis
Command :ISCan:RUNT:HYSTeresis <value>
The :ISCan:RUNT:HYSTeresis command sets the hysteresis value used for
the Runt trigger.
<value> is a real number for the hysteresis.
Example The following example sets the hysteresis value used by the Runt trigger
mode to 10 mV.
myScope.WriteString ":ISCAN:RUNT:HYSTERESIS 1E-2"
Query :ISCan:RUNT:HYSTersis?
The query returns the hysteresis value used by the Runt trigger mode.
Returned Format
[:ISCan:RUNT:HYSTeresis]<value><NL>
Example The following example returns and prints the value of the hysteresis.
myScope.WriteString ":SYSTEM:HEADER OFF" ' Response headers off.
myScope.WriteString ":ISCAN:RUNT:HYSTERESIS?"
varValue = myScope.ReadNumber
Debug.Print FormatNumber(varValue, 0)