Technical data
Channel Commands 12
Agilent Infiniium 90000 Series Oscilloscopes Programmer's Reference 173
:CHANnel<N>:BWLimit
Command :CHANnel<N>:BWLimit {{ON | 1} | {OFF | 0}}
The :CHANnel<N>:BWLimit command controls the low- pass filter. When
ON, the bandwidth of the specified channel is limited. The bandwidth
filter can be used with either AC or DC coupling.
<N> An integer, 1 - 4
Example This example sets the internal low- pass filter t "ON" for channel 1.
myScope.WriteString ":CHANNEL1:BWLimit ON"
Query :CHANnel<N>:BWLimit?
The :CHANnel<N>:BWLimit? query returns the current state of the
low- pass filter for the specified channel.
Returned Format
[:CHANnel<N>:BWLimit] {1 | 0}<NL>
Example This example places the current setting of the low- pass filter in the
variable varLimit, then prints the contents of the variable to the
computer's screen.
myScope.WriteString ":SYSTem:HEADer OFF"
myScope.WriteString ":CHANNEL1:BWLimit?"
varLimit = myScope.ReadNumber
Debug.Print FormatNumber(varLimit, 0)