Technical data

Table Of Contents
Serial Data Equalization Commands 30
Agilent Infiniium 9000 Series Oscilloscopes Programmer's Reference 845
:SPRocessing:CTLequalizer:VERTical:RANGe
Command :SPRocessing:CTLequalizer:VERTical:RANGe <range>
The :SPRocessing:CTLequalizer:VERTical:RANGe command sets the CTLE
signal's vertical range.
<range> A real number for the full- scale CTLE signal's vertical range.
Example This example sets the CTLE signal's vertical range to 16 volts (2 volts
times 8 divisions.)
myScope.WriteString ":SPRocessing:CTLequalizer:VERTICAL:RANGE 16"
Query :SPRocessing:CTLequalizer:VERTical:RANGe?
The :SPRocessing:CTLequalizer:VERTical:RANGe? query returns the CTLE
signal's vertical range setting.
Returned Format
[:SPRocessing:CTLequalizer:VERTical:RANGe] <value><NL>
<value> The CTLE signal's vertical range setting.
Example This example places the current value of the CTLE signal's vertical range
in the numeric variable, varValue, then prints the contents of the variable
to the computer's screen.
myScope.WriteString ":SYSTEM:HEADER OFF" ' Response headers off.
myScope.WriteString ":SPRocessing:CTLequalizer:VERTICAL:RANGE?"
varValue = myScope.ReadNumber
Debug.Print FormatNumber(varValue, 0)