Technical data
Mask Test Commands 23
Agilent Infiniium 90000 Series Oscilloscopes Programmer's Reference 433
:MTESt:STIMe
Command :MTESt:STIMe <timeout>
The :MTESt:STIMe command sets the timeout value for the Autoalign
feature. If the oscilloscope is unable to align the mask to your waveform
within the specified timeout value, it will stop trying to align and will
report an alignment failure.
<timeout> An integer from 1 to 120 seconds representing the time between triggers
(not the time that it takes to finish the alignment.)
Example This example sets the timeout value for the Autoalign feature to 10
seconds.
myScope.WriteString ":MTEST:STIMe 10"
Query :MTESt:STIMe?
The query returns timeout value for the Autoalign feature.
Returned Format
[:MTESt:STIMe] <timeout><NL>
Example This example gets the timeout setting and prints the result on the
computer display.
myScope.WriteString ":MTEST:STIME?"
varValue = myScope.ReadNumber
Debug.Print FormatNumber(varValue, 0)