Technical data

Serial Data Equalization Commands 28
Agilent Infiniium 90000 Series Oscilloscopes Programmer's Reference 741
:SPRocessing:FFEQualizer:VERTical:RANGe
Command :SPRocessing:FFEQualizer:VERTical:RANGe <range>
The :SPRocessing:FFEQualizer:VERTial:RANGe command sets the FFE
signal's vertical range.
<range> A real number for the full- scale FFE signal's vertical range.
Example This example sets the FFE signal's vertical range to 16 volts (2 volts times
8 divisions.)
myScope.WriteString ":SPRocessing:FFEQualizer:VERTICAL:RANGE 16"
Query :SPRocessing:FFEQualizer:VERTical:RANGe?
The :SPRocessing:FFEQualizer:VERTical:RANGe? query returns the FFE
signal's vertical range setting.
Returned Format
[:SPRocessing:FFEQualizer:VERTical:RANGe] <value><NL>
<value> The FFE signal's vertical range setting.
Example This example places the current value of the FFE 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:FFEQualizer:VERTICAL:RANGE?"
varValue = myScope.ReadNumber
Debug.Print FormatNumber(varValue, 0)