Technical data
Acquire Commands 9
Agilent Infiniium 90000 Series Oscilloscopes Programmer's Reference 159
:ACQuire:SEGMented:TTAGs
Command :ACQuire:SEGMented:TTAGs {{ON | 1} | {OFF | 0}}
The :ACQuire:SEGMented:TTAGs command turns the time tags feature on
or off for the segmented memory sampling mode.
Example This example turns the time tags on for segmented memory.
myScope.WriteString ":ACQUIRE:SEGMented:TTAGs ON"
Query :ACQuire:SEGMented:TTAGs?
The :ACQuire:SEGMented:TTAGs? query returns the segmented memory
time tags control value.
Returned Format
[:ACQuire:SEGMented:TTAGs] {1 | 0}<NL>
Example This example checks the current setting for segmented memory time tags
control and places the result in the variable, varTimeTags. Then the
program prints the contents of the variable to the computer's screen.
myScope.WriteString ":SYSTEM:HEADER OFF"
myScope.WriteString ":ACQUIRE:SEGMents:TTAGs?"
varTimeTags = myScope.ReadNumber
Debug.Print FormatNumber(varTimeTags, 0)