Tektronix TDS7000 Series Programmer's Manual

Type
Programmer's Manual
TDS7000 Series
GPIB Programmer Online Guide
Printable version 1.0
®
1
Copyright and Version Information
Copyright © Tektronix, Inc. All rights reserved. Licensed software products are owned by Tektronix or its
suppliers and are protected by United States copyright laws and international treaty provisions.
Use, duplication or disclosure by the Government is subject to restrictions as set forth in subparagraph
(c)(1)(ii) of the Rights in Technical Data and Computer Software clause at DFARS 252.227-7013, or
subparagraphs (c)(1) and (2) of the Commercial Computer Software – Restricted Rights clause at FAR
52.227-19, as applicable.
Tektronix products are covered by U.S. and foreign patents, issued and pending. Information in this
documentation supercedes that in all previously published material. Specifications and price change
privileges reserved.
Tektronix, Inc. P.O. Box 500, Beaverton, OR 97077
TEKTRONIX, TEK, and TEKPROBE are registered trademarks of Tektronix, Inc.
FrameScan is a trademark of Tektronix, Inc.
TDS7000 Series Programmer Online Guide
OLH0140, Version 01.00
Getting Started
Introduction
This programmer online guide provides you with the information you need to use GPIB commands for
remotely controlling your instrument. With this information, you can write computer programs that will
perform functions such as setting the front-panel controls, taking measurements, performing statistical
calculations, and exporting data for use in other programs, such as spreadsheets.
The programmer guide is divided into the following major topics (books):
• Getting Started. This topic introduces you to the online help and provides basic information about
setting up your instrument for remote control.
• Command Syntax. This topic provides an overview of the command syntax that you will use to
communicate with the instrument and other general information about commands, such as how
commands and queries are constructed, how to enter commands, constructed mnemonics, and
argument types.
• Command Groups. This topic contains all the commands listed in functional groups. Each group
consists of an overview of the commands in that group and a table that lists all the commands and
queries for that group. You can click a command in the listing and a detailed description of the
command will be displayed.
• Status and Events. This topic discusses the status and event reporting system for the GPIB interface.
This system informs you of certain significant events that occur within the instrument. Topics that are
discussed include registers, queues, event handling sequences, synchronization methods, and
messages that the instrument may return, including error messages.
• Miscellaneous. This topic contains miscellaneous information, such as a list of reserved words, a
table of the factory initialization (default) settings, and GPIB interface specifications that may be helpful
when using GPIB commands to remotely control the instrument.
Setting Up Remote Communications
Before setting up your instrument for remote communications, you should familiarize yourself with the
following GPIB requirements:
• A unique device address must be assigned to each device on the bus. No two devices can share the
same device address.
• No more than 15 devices can be connected to any one line.
• One device should be connected for every 6 feet (2 meters) of cable used.
• No more than 65 feet (20 meters) of cable should be used to connect devices to a bus.
• At least two-thirds of the devices on the network should be powered on while using the network.
• Connect the devices on the network in a star or linear configuration. Do not use loop or parallel
configurations.
2
Connecting to the Instrument
Your instrument has a 24-pin GPIB connector on its rear panel. This connector has a D-type shell and
conforms to IEEE Std 488.1–1987. Attach an IEEE Std 488.1–1987 GPIB cable to this connector and to
your controller as shown in the following figure.
If necessary, the GPIB connectors can be stacked as shown in the figure below.
Setting the GPIB Address
To function correctly, your instrument must have a unique device address. The default settings for the
GPIB configuration are:
• GPIB Address 1
• GPIB Mode GPIB Talk/Listen
To change either of the GPIB settings, do the following:
1. Select GPIB Configuration… from the Utilities menu.
3
2. Click the Configuration Talk/Listen button.
3. Change the GPIB Address to a unique address.
4. Click the Close button.
4
The instrument is set up for bi-directional communication with your controller.
Documentation
In addition to this TDS7000 Series Programmer Online Guide, the following documentation is included
with this instrument.
User Manual. The User Manual has
information about installing and
operating the Oscilloscope. It also
provides concepts and theories
about using the oscilloscope that are
not covered in the online help.
Quick Reference Guide. A quick
reference guide provides basic
information on connecting a signal to
the oscilloscope and displaying the
results.
TDS 7000 Series Online Help. This
is an online help system that is
integrated with the User Interface
application that ships with this
product.
Optional Service Manual. A service
manual is available as an optional
accessory; it includes procedures to
service the oscilloscope to module
levels. It also includes performance
verification procedures so you can
verify performance to advertised
specifications.
5
Command Syntax
Syntax Overview
You can control the operations and functions of the instrument through the GPIB interface using
commands and queries. The related topics listed below describe the syntax of these commands and
queries. The topics also describe the conventions that the instrument uses to process them. See the
Command Groups topic in the table of contents for a listing of the commands by command group or use
the index to locate a specific command.
Backus-Naur Form Notation
This documentation describes the commands and queries using Backus-Naur Form (BNF) notation.
Refer to the following table for the symbols that are used.
Symbols for Backus-Naur Form
Symbol Meaning
< > Defined element
::= Is defined as
| Exclusive OR
{ } Group; one element is required
[ ] Optional; can be omitted
. . . Previous element(s) may be repeated
( ) Comment
6
Command and Query Structure
Commands consist of set commands and query commands (usually called commands and queries).
Commands modify instrument settings or tell the instrument to perform a specific action. Queries cause
the instrument to return data and status information.
Most commands have both a set form and a query form. The query form of the command differs from the
set form by its question mark on the end. For example, the set command ACQuire:MODe has a query
form ACQuire:MODe?. Not all commands have both a set and a query form. Some commands have set
only and some have query only.
Messages
A command message is a command or query name followed by any information the instrument needs to
execute the command or query. Command messages may contain five element types, defined in the
following table.
Command and Message Elements
Symbol Meaning
<Header> This is the basic command name. If the
header ends with a question mark, the
command is a query. The header may begin
with a colon (:) character. If the command is
concatenated with other commands, the
beginning colon is required. Never use the
beginning colon with command headers
beginning with a star (*).
<Mnemonic> This is a header subfunction. Some
command headers have only one mnemonic.
If a command header has multiple
mnemonics, a colon (:) character always
separates them from each other.
<Argument> This is a quantity, quality, restrictijon, or limit
associated with the header. Some
commands have no arguments while others
have multiple arguments. A <space>
separates arguments from the header. A
<comma> separates arguments from each
other.
<Comma A single comma is used between arguments
of multiple-argument commands. Optionally,
there may be white space characters before
and after the comma.
<Space> A white space character is used between a
command header and the related argument.
Optionally, a white space may consist of
multiple white space characters.
7
Commands
Commands cause the instrument to perform a specific function or change one of the settings. Commands
have the structure:
[:]<Header>[<Space><Argument>[<Comma><Argument>]...]
A command header consists of one or more mnemonics arranged in a hierarchical or tree structure. The
first mnemonic is the base or root of the tree and each subsequent mnemonic is a level or branch off the
previous one. Commands at a higher level in the tree may affect those at a lower level. The leading colon
(:) always returns you to the base of the command tree.
8
Queries
Queries cause the instrument to return status or setting information. Queries have the structure:
• [:]<Header>?
• [:]<Header>?[<Space><Argument>[<Comma><Argument>]
...]
You can specify a query command at any level within the command tree unless otherwise noted. These
branch queries return information about all the mnemonics below the specified branch or level. For
example, HIStogram:STATistics:STDdev? returns the standard deviation of the histogram, while
HIStogram:STATistics? returns all the histogram statistics, and HIStogram? returns all the histogram
parameters.
9
Headers
You can control whether the instrument returns headers as part of the query response. Use the HEADer
command to control this feature. If header is on, the query response returns command headers, then
formats itself as a valid set command. When header is off, the response includes only the values. This
may make it easier to parse and extract the information from the response. The table below shows the
difference in responses.
Comparison of Header Off and Header On Responses
Query Header Off Header On
TIME? "14:30:00" :TIME"14:30:00"
ACQuire:NUMAVg? 100 :ACQUIRE:NUMAVG 100
10
Command Entry
Rules
The following rules apply when entering commands:
• You can enter commands in upper or lower case.
• You can precede any command with white space characters. White space characters include any
combination of the ASCII control characters 00 through 09 and 0B through 20 hexadecimal (0
through 9 and 11 through 32 decimal).
• The instrument ignores commands consisting of any combination of white space characters and line
feeds.
11
Abbreviating
You can abbreviate many instrument commands. Each command in this documentation shows the
abbreviations in capitals. For example, you can enter the command ACQuire:NUMAvg simply as
ACQ:NUMA or acq:numa.
Abbreviation rules may change over time as new instrument models are introduced. Thus, for the most
robust code, use the full spelling.
If you use the HEADer command to have command headers included as part of query responses, you
can further control whether the returned headers are abbreviated or are full-length with the VERBose
command.
12
Concatenating
You can concatenate any combination of set commands and queries using a semicolon (;). The
instrument executes concatenated commands in the order received.
When concatenating commands and queries, you must follow these rules:
1 Separate completely different headers by a semicolon and by the beginning colon on all commands
except the first one. For example, the commands TRIGger:MODe NORMal and ACQuire:NUMAVg
10, can be concatenated into the following single command:
TRIGger:MODe NORMal;:ACQuire:NUMAVg 10
2 If concatenated commands have headers that differ by only the last mnemonic, you can abbreviate
the second command and eliminate the beginning colon. For example, you can concatenate the
commands ACQuire:MODe ENVelope and ACQuire:NUMAVg 10 into a single command:
ACQuire:MODe ENVelope; NUMAVg 10
The longer version works equally well:
ACQuire:MODe ENVelope;:ACQuire:NUMAVg 10
3 Never precede a star (*) command with a colon:
ACQuire:MODe ENVelope;*OPC
Any commands that follow will be processed as if the star command was not there so the commands,
ACQuire:MODe ENVelope;*OPC;NUMAVg 10 will set the acquisition mode to envelope and set the
number of acquisitions for averaging to 10.
4 When you concatenate queries, the responses to all the queries are concatenated into a single
response message. For example, if the display background color is white and the display foreground
color is black, the concatenated query DISplay:COLor:BACKGround?;FOREGround? will return the
following.
If the header is on:
:DISPLAY:COLOR:BACKGROUND 7;:DISPLAY:COLOR:FOREGROUND 0
If the header is off:
7;0
5 Set commands and queries may be concatenated in the same message. For example,
ACQuire:MODe SAMple;NUMAVg?;STATE?
is a valid message that sets the acquisition mode to sample. The message then queries the
number of acquisitions for averaging and the acquisition state. Concatenated commands and
queries are executed in the order received.
Here are some invalid concatenations:
• DISPlay:STYle:NORMal;ACQuire:NUMAVg 10
(no colon before ACQuire)
• DISPlay:COLor:CURSor1 1;:CURSor2 5
(extra colon before CURSor2; use DISPlay:COLor:CURSor1 1:CURSor2 5 instead)
• DISPlay:STYle:NORMal;:*OPC
(colon before a star (*) command)
• DISPlay:COLor:CURSor1 1;COLor:CURSor2 5
(levels of the mnemonics are different; either remove the second use of COLor or place :DISPlay: in
front of COLor:CURSor2 5)
13
Terminating
This documentation uses <EOM> (End of message) to represent a message terminator.
End of Message Terminator
Symbol Meaning
<EOM> Message terminator
The end-of-message terminator may be the END message (EOI asserted concurrently with the last data
byte), the ASCII code for line feed (LF) sent as the last data byte, or both. The instrument always
terminates messages with LF and EOI. It allows white space before the terminator. For example, it allows
CR LF.
14
Clearing the Instrument
You can clear the Output Queue and reset the instrument to accept a new command or query by using
the selected Device Clear (DCL) GPIB function. Refer to your GPIB library documentation for further
details about the selected Device Clear operation.
15
Argument Types
Numeric
Many instrument commands require numeric arguments. The syntax shows the format that the
instrument returns in response to a query. This is also the preferred format when sending the command
to the instrument though any of the formats will be accepted. This documentation represents these
arguments as follows:
Numeric Arguments
Symbol Meaning
<NR1> Signed integer value
<NR2> Floating point value without an exponent
<NR3> Floating point value with an exponent
Most numeric arguments will be automatically forced to a valid setting, either by rounding or truncating,
when an invalid number is input unless otherwise noted in the command description.
Quoted String
Some commands accept or return data in the form of a quoted string, which is simply a group of ASCII
characters enclosed by a single quote (') or double quote ("). For example: "this is a quoted string". This
documentation represents these arguments as follows:
Quoted String Argument
Symbol Meaning
<QString> Quoted string of ASCII text
A quoted string can include any character defined in the 7-bit ASCII character set. Follow these rules
when you use quoted strings:
1 Use the same type of quote character to open and close the string. For example: "this is a valid
string".
2 You can mix quotation marks within a string as long as you follow the previous rule. For example, "this
is an 'acceptable' string".
3 You can include a quote character within a string simply by repeating the quote. For example: "here is
a "" mark".
4 Strings can have upper or lower case characters.
5 If you use a GPIB network, you cannot terminate a quoted string with the END message before the
closing delimiter.
6 A carriage return or line feed embedded in a quoted string does not terminate the string, but is treated
as just another character in the string.
7 The maximum length of a quoted string returned from a query is 1000 characters.
Here are some invalid strings:
* "Invalid string argument' (quotes are not of the same type)
* "test<EOI>" (termination character is embedded in the string)
16
Block
Several instrument commands use a block argument form (see the following table).
Block Arguments
Symbol Meaning
<NZDig> A nonzero digit character in the range of 1–9
<Dig> A digit character, in the range of 0–9
<DChar>
A character with the hexadecimal equivalent of 00
through FF (0 through 255 decimal)
<Block> A block of data bytes defined as:
<Block> ::=
{#<NZDig><Dig>[<Dig>...][<DChar>...]
|#0[<DChar>...]<terminator>}
<NZDig> specifies the number of <Dig> elements that follow. Taken together, the <Dig> elements form a
decimal integer that specifies how many <DChar> elements follow.
17
Constructed Mnemonics
Some header mnemonics specify one of a range of mnemonics. For example, a channel mnemonic can
be CH1, CH2, CH3, or CH4. You use these mnemonics in the command just as you do any other
mnemonic. For example, there is a CH1:POSition command, and there is also a CH2:POSition
command. In the command descriptions, this list of choices is abbreviated as CH<x>.
Cursor Position Mnemonics
When cursors are displayed, commands may specify which cursor of the pair to use.
Cursor Mnemonics
Symbol Meaning
CURSOR<x> A cursor selector; <x> is either 1 or 2.
POSITION<x> A cursor selector; <x> is either 1 or 2.
HPOS<x> A cursor selector; <x> is either 1 or 2.
Math Specifier Mnemonics
Commands can specify the mathematical waveform to use as a mnemonic in the header.
Math Specifier Mnemonics
Symbol Meaning
MATH<x> A math waveform specifier; <x> is 1 through 4.
Measurement Specifier Mnemonics
Commands can specify which measurement to set or query as a mnemonic in the header. Up to eight
automated measurements may be displayed.
Measurement Specifier Mnemonics
Symbol Meaning
MEAS<x> A measurement specifier; <x> is 1 through 8.
Channel Mnemonics
Commands specify the channel to use as a mnemonic in the header.
Channel Mnemonics
Symbol Meaning
CH<x> A channel specifier; <x> is 1 through 4.
Reference Waveform Mnemonics
Commands can specify the reference waveform to use as a mnemonic in the header.
Reference Waveform Mnemonics
Symbol Meaning
REF<x> A reference waveform specifier; <x> is 1 through 4.
18
Commands
Acquisition Command Group
Acquisition Overview
You use the commands in the Acquisition Command Group to set up the modes and functions that
control how the instrument acquires the signals you input to the channels and processes them into
waveforms.
Using these commands for acquiring waveforms, you can do the following:
• Start and stop acquisitions.
• Control whether each waveform is simply acquired, averaged, or enveloped over successive
acquisitions of that waveform.
• Set the controls or conditions that start and stop acquisitions.
• Determine the action the system takes upon completing an acquisition, such as saving all waveforms
and taking a measurement when the acquisition is stopped.
• Control acquisition of acquired channel waveforms.
• Set acquisition parameters.
  • Page 1 1
  • Page 2 2
  • Page 3 3
  • Page 4 4
  • Page 5 5
  • Page 6 6
  • Page 7 7
  • Page 8 8
  • Page 9 9
  • Page 10 10
  • Page 11 11
  • Page 12 12
  • Page 13 13
  • Page 14 14
  • Page 15 15
  • Page 16 16
  • Page 17 17
  • Page 18 18
  • Page 19 19
  • Page 20 20
  • Page 21 21
  • Page 22 22
  • Page 23 23
  • Page 24 24
  • Page 25 25
  • Page 26 26
  • Page 27 27
  • Page 28 28
  • Page 29 29
  • Page 30 30
  • Page 31 31
  • Page 32 32
  • Page 33 33
  • Page 34 34
  • Page 35 35
  • Page 36 36
  • Page 37 37
  • Page 38 38
  • Page 39 39
  • Page 40 40
  • Page 41 41
  • Page 42 42
  • Page 43 43
  • Page 44 44
  • Page 45 45
  • Page 46 46
  • Page 47 47
  • Page 48 48
  • Page 49 49
  • Page 50 50
  • Page 51 51
  • Page 52 52
  • Page 53 53
  • Page 54 54
  • Page 55 55
  • Page 56 56
  • Page 57 57
  • Page 58 58
  • Page 59 59
  • Page 60 60
  • Page 61 61
  • Page 62 62
  • Page 63 63
  • Page 64 64
  • Page 65 65
  • Page 66 66
  • Page 67 67
  • Page 68 68
  • Page 69 69
  • Page 70 70
  • Page 71 71
  • Page 72 72
  • Page 73 73
  • Page 74 74
  • Page 75 75
  • Page 76 76
  • Page 77 77
  • Page 78 78
  • Page 79 79
  • Page 80 80
  • Page 81 81
  • Page 82 82
  • Page 83 83
  • Page 84 84
  • Page 85 85
  • Page 86 86
  • Page 87 87
  • Page 88 88
  • Page 89 89
  • Page 90 90
  • Page 91 91
  • Page 92 92
  • Page 93 93
  • Page 94 94
  • Page 95 95
  • Page 96 96
  • Page 97 97
  • Page 98 98
  • Page 99 99
  • Page 100 100
  • Page 101 101
  • Page 102 102
  • Page 103 103
  • Page 104 104
  • Page 105 105
  • Page 106 106
  • Page 107 107
  • Page 108 108
  • Page 109 109
  • Page 110 110
  • Page 111 111
  • Page 112 112
  • Page 113 113
  • Page 114 114
  • Page 115 115
  • Page 116 116
  • Page 117 117
  • Page 118 118
  • Page 119 119
  • Page 120 120
  • Page 121 121
  • Page 122 122
  • Page 123 123
  • Page 124 124
  • Page 125 125
  • Page 126 126
  • Page 127 127
  • Page 128 128
  • Page 129 129
  • Page 130 130
  • Page 131 131
  • Page 132 132
  • Page 133 133
  • Page 134 134
  • Page 135 135
  • Page 136 136
  • Page 137 137
  • Page 138 138
  • Page 139 139
  • Page 140 140
  • Page 141 141
  • Page 142 142
  • Page 143 143
  • Page 144 144
  • Page 145 145
  • Page 146 146
  • Page 147 147
  • Page 148 148
  • Page 149 149
  • Page 150 150
  • Page 151 151
  • Page 152 152
  • Page 153 153
  • Page 154 154
  • Page 155 155
  • Page 156 156
  • Page 157 157
  • Page 158 158
  • Page 159 159
  • Page 160 160
  • Page 161 161
  • Page 162 162
  • Page 163 163
  • Page 164 164
  • Page 165 165
  • Page 166 166
  • Page 167 167
  • Page 168 168
  • Page 169 169
  • Page 170 170
  • Page 171 171
  • Page 172 172
  • Page 173 173
  • Page 174 174
  • Page 175 175
  • Page 176 176
  • Page 177 177
  • Page 178 178
  • Page 179 179
  • Page 180 180
  • Page 181 181
  • Page 182 182
  • Page 183 183
  • Page 184 184
  • Page 185 185
  • Page 186 186
  • Page 187 187
  • Page 188 188
  • Page 189 189
  • Page 190 190
  • Page 191 191
  • Page 192 192
  • Page 193 193
  • Page 194 194
  • Page 195 195
  • Page 196 196
  • Page 197 197
  • Page 198 198
  • Page 199 199
  • Page 200 200
  • Page 201 201
  • Page 202 202
  • Page 203 203
  • Page 204 204
  • Page 205 205
  • Page 206 206
  • Page 207 207
  • Page 208 208
  • Page 209 209
  • Page 210 210
  • Page 211 211
  • Page 212 212
  • Page 213 213
  • Page 214 214
  • Page 215 215
  • Page 216 216
  • Page 217 217
  • Page 218 218
  • Page 219 219
  • Page 220 220
  • Page 221 221
  • Page 222 222
  • Page 223 223
  • Page 224 224
  • Page 225 225
  • Page 226 226
  • Page 227 227
  • Page 228 228
  • Page 229 229
  • Page 230 230
  • Page 231 231
  • Page 232 232
  • Page 233 233
  • Page 234 234
  • Page 235 235
  • Page 236 236
  • Page 237 237
  • Page 238 238
  • Page 239 239
  • Page 240 240
  • Page 241 241
  • Page 242 242
  • Page 243 243
  • Page 244 244
  • Page 245 245
  • Page 246 246
  • Page 247 247
  • Page 248 248
  • Page 249 249
  • Page 250 250
  • Page 251 251
  • Page 252 252
  • Page 253 253
  • Page 254 254
  • Page 255 255
  • Page 256 256
  • Page 257 257
  • Page 258 258
  • Page 259 259
  • Page 260 260
  • Page 261 261
  • Page 262 262
  • Page 263 263
  • Page 264 264
  • Page 265 265
  • Page 266 266
  • Page 267 267
  • Page 268 268
  • Page 269 269
  • Page 270 270
  • Page 271 271
  • Page 272 272
  • Page 273 273
  • Page 274 274
  • Page 275 275
  • Page 276 276
  • Page 277 277
  • Page 278 278
  • Page 279 279
  • Page 280 280
  • Page 281 281
  • Page 282 282
  • Page 283 283
  • Page 284 284
  • Page 285 285
  • Page 286 286
  • Page 287 287
  • Page 288 288
  • Page 289 289
  • Page 290 290
  • Page 291 291
  • Page 292 292
  • Page 293 293
  • Page 294 294
  • Page 295 295
  • Page 296 296
  • Page 297 297
  • Page 298 298
  • Page 299 299
  • Page 300 300
  • Page 301 301
  • Page 302 302
  • Page 303 303
  • Page 304 304
  • Page 305 305
  • Page 306 306
  • Page 307 307
  • Page 308 308
  • Page 309 309
  • Page 310 310
  • Page 311 311
  • Page 312 312
  • Page 313 313
  • Page 314 314
  • Page 315 315
  • Page 316 316
  • Page 317 317
  • Page 318 318
  • Page 319 319
  • Page 320 320
  • Page 321 321
  • Page 322 322
  • Page 323 323
  • Page 324 324
  • Page 325 325
  • Page 326 326
  • Page 327 327
  • Page 328 328
  • Page 329 329
  • Page 330 330
  • Page 331 331
  • Page 332 332
  • Page 333 333
  • Page 334 334
  • Page 335 335
  • Page 336 336
  • Page 337 337
  • Page 338 338
  • Page 339 339
  • Page 340 340
  • Page 341 341
  • Page 342 342
  • Page 343 343
  • Page 344 344
  • Page 345 345
  • Page 346 346
  • Page 347 347
  • Page 348 348
  • Page 349 349
  • Page 350 350
  • Page 351 351
  • Page 352 352
  • Page 353 353
  • Page 354 354
  • Page 355 355
  • Page 356 356
  • Page 357 357
  • Page 358 358
  • Page 359 359
  • Page 360 360
  • Page 361 361
  • Page 362 362
  • Page 363 363
  • Page 364 364
  • Page 365 365
  • Page 366 366
  • Page 367 367
  • Page 368 368
  • Page 369 369
  • Page 370 370
  • Page 371 371
  • Page 372 372
  • Page 373 373
  • Page 374 374
  • Page 375 375
  • Page 376 376
  • Page 377 377
  • Page 378 378
  • Page 379 379
  • Page 380 380
  • Page 381 381
  • Page 382 382
  • Page 383 383
  • Page 384 384
  • Page 385 385
  • Page 386 386
  • Page 387 387
  • Page 388 388
  • Page 389 389
  • Page 390 390
  • Page 391 391
  • Page 392 392
  • Page 393 393
  • Page 394 394
  • Page 395 395
  • Page 396 396
  • Page 397 397
  • Page 398 398
  • Page 399 399
  • Page 400 400
  • Page 401 401
  • Page 402 402
  • Page 403 403
  • Page 404 404
  • Page 405 405
  • Page 406 406
  • Page 407 407
  • Page 408 408
  • Page 409 409
  • Page 410 410
  • Page 411 411
  • Page 412 412
  • Page 413 413
  • Page 414 414
  • Page 415 415
  • Page 416 416
  • Page 417 417
  • Page 418 418
  • Page 419 419
  • Page 420 420
  • Page 421 421
  • Page 422 422
  • Page 423 423
  • Page 424 424
  • Page 425 425
  • Page 426 426
  • Page 427 427
  • Page 428 428
  • Page 429 429
  • Page 430 430
  • Page 431 431
  • Page 432 432
  • Page 433 433
  • Page 434 434
  • Page 435 435
  • Page 436 436
  • Page 437 437
  • Page 438 438
  • Page 439 439
  • Page 440 440
  • Page 441 441
  • Page 442 442
  • Page 443 443
  • Page 444 444
  • Page 445 445
  • Page 446 446
  • Page 447 447
  • Page 448 448
  • Page 449 449
  • Page 450 450
  • Page 451 451
  • Page 452 452
  • Page 453 453
  • Page 454 454
  • Page 455 455
  • Page 456 456
  • Page 457 457
  • Page 458 458
  • Page 459 459
  • Page 460 460
  • Page 461 461
  • Page 462 462
  • Page 463 463
  • Page 464 464
  • Page 465 465
  • Page 466 466
  • Page 467 467
  • Page 468 468
  • Page 469 469
  • Page 470 470
  • Page 471 471
  • Page 472 472
  • Page 473 473
  • Page 474 474
  • Page 475 475
  • Page 476 476
  • Page 477 477
  • Page 478 478
  • Page 479 479
  • Page 480 480
  • Page 481 481
  • Page 482 482
  • Page 483 483
  • Page 484 484
  • Page 485 485
  • Page 486 486
  • Page 487 487
  • Page 488 488
  • Page 489 489
  • Page 490 490
  • Page 491 491
  • Page 492 492
  • Page 493 493
  • Page 494 494
  • Page 495 495
  • Page 496 496
  • Page 497 497
  • Page 498 498
  • Page 499 499
  • Page 500 500
  • Page 501 501
  • Page 502 502
  • Page 503 503
  • Page 504 504
  • Page 505 505
  • Page 506 506
  • Page 507 507
  • Page 508 508
  • Page 509 509
  • Page 510 510
  • Page 511 511
  • Page 512 512
  • Page 513 513
  • Page 514 514
  • Page 515 515
  • Page 516 516
  • Page 517 517
  • Page 518 518
  • Page 519 519
  • Page 520 520
  • Page 521 521
  • Page 522 522
  • Page 523 523
  • Page 524 524
  • Page 525 525
  • Page 526 526
  • Page 527 527
  • Page 528 528
  • Page 529 529
  • Page 530 530
  • Page 531 531
  • Page 532 532
  • Page 533 533
  • Page 534 534
  • Page 535 535
  • Page 536 536
  • Page 537 537
  • Page 538 538
  • Page 539 539
  • Page 540 540
  • Page 541 541
  • Page 542 542
  • Page 543 543
  • Page 544 544
  • Page 545 545
  • Page 546 546
  • Page 547 547
  • Page 548 548
  • Page 549 549
  • Page 550 550
  • Page 551 551
  • Page 552 552
  • Page 553 553
  • Page 554 554
  • Page 555 555
  • Page 556 556
  • Page 557 557
  • Page 558 558
  • Page 559 559
  • Page 560 560
  • Page 561 561
  • Page 562 562
  • Page 563 563
  • Page 564 564
  • Page 565 565
  • Page 566 566
  • Page 567 567
  • Page 568 568
  • Page 569 569
  • Page 570 570
  • Page 571 571
  • Page 572 572
  • Page 573 573
  • Page 574 574
  • Page 575 575
  • Page 576 576

Tektronix TDS7000 Series Programmer's Manual

Type
Programmer's Manual

Ask a question and I''ll find the answer in the document

Finding information in a document is now easier with AI