Technical data

740 Agilent Infiniium 90000 Series Oscilloscopes Programmer's Reference
28 Serial Data Equalization Commands
:SPRocessing:FFEQualizer:VERTical:OFFSet
Command :SPRocessing:FFEQualizer:VERTical:OFFSet <offset>
The :SPRocessing:FFEQualizer:VERTial:OFFSet command sets the FFE
signal's vertical offset.
<offset> A real number for the FFE signal's vertical offset.
Example This example sets the FFE signal's vertical offset to 1 volt.
myScope.WriteString ":SPRocessing:FFEQualizer:VERTICAL:OFFSET 1"
Query :SPRocessing:FFEQualizer:VERTical:OFFSet?
The:SPRocessing:FFEQualizer:VERTIcal:OFFSet? query returns theFFE
signal's vertical offset setting.
Returned format
[:SPRocessing:FFEQualizer:VERTical:OFFSet] <value><NL>
<value> The FFE signal's vertical offset setting.
Example This example places the current value of the FFE signal's vertical offset 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:OFFSET?"
varValue = myScope.ReadNumber
Debug.Print FormatNumber(varValue, 0)