Agilent Technologies HP 54601B Specifikace Strana 1

Procházejte online nebo si stáhněte Specifikace pro Měření, testování a kontrola Agilent Technologies HP 54601B. Agilent Technologies HP 54601B Specifications Uživatelská příručka

  • Stažení
  • Přidat do mých příruček
  • Tisk
  • Strana
    / 100
  • Tabulka s obsahem
  • KNIHY
  • Hodnocené. / 5. Na základě hodnocení zákazníků
Zobrazit stránku 0
Artisan Technology Group is your source for quality
new and certied-used/pre-owned equipment
FAST SHIPPING AND
DELIVERY
TENS OF THOUSANDS OF
IN-STOCK ITEMS
EQUIPMENT DEMOS
HUNDREDS OF
MANUFACTURERS
SUPPORTED
LEASING/MONTHLY
RENTALS
ITAR CERTIFIED
SECURE ASSET SOLUTIONS
SERVICE CENTER REPAIRS
Experienced engineers and technicians on staff
at our full-service, in-house repair center
WE BUY USED EQUIPMENT
Sell your excess, underutilized, and idle used equipment
We also offer credit for buy-backs and trade-ins
www.artisantg.com/WeBuyEquipment
REMOTE INSPECTION
Remotely inspect equipment before purchasing with
our interactive website at www.instraview.com
LOOKING FOR MORE INFORMATION?
Visit us on the web at www.artisantg.com for more
information on price quotations, drivers, technical
specications, manuals, and documentation
Contact us: (888) 88-SOURCE | sales@artisantg.com | www.artisantg.com
SM
View
Instra
Zobrazit stránku 0
1 2 3 4 5 6 ... 99 100

Shrnutí obsahu

Strany 1 -

Artisan Technology Group is your source for quality new and certied-used/pre-owned equipment• FAST SHIPPING AND DELIVERY• TENS OF THOUSANDS OF IN-S

Strany 2 - Agilent 54600-Series

1Introduction to Programming Artisan Technology Group - Quality Instrumentation ... Guaranteed | (888) 88-SOURCE | www.artisantg.com

Strany 3 - Programming the Oscilloscope

Artisan Technology Group is your source for quality new and certied-used/pre-owned equipment• FAST SHIPPING AND DELIVERY• TENS OF THOUSANDS OF IN-S

Strany 4

Introduction to ProgrammingChapters 1 and 2 introduce the basics for remote programming of anoscilloscope. The programming instructions in this manual

Strany 5 - In This Book

Talking to the InstrumentComputers acting as controllers communicate with the instrument bysending and receiving messages over a remote interface. Ins

Strany 6

Program Message SyntaxTo program the instrument remotely, you must understand the commandformat and structure expected by the instrument. The IEEE 488

Strany 7

InstructionsInstructions (both commands and queries) normally appear as a stringembedded in a statement of your host language, such as BASIC, Pascal,

Strany 8 - Contents

Header TypesThere are three types of headers:Simple Command headers.Compound Command headers.Common Command headers.Simple Command Header Simple comma

Strany 9 - 6 Status Reporting

Combining Commands from the Same SubsystemTo execute more than one function within the same subsystem a semi-colon(;) is used to separate the function

Strany 10 - Introduction to Programming

Query CommandCommand headers immediately followed by a question mark (?) are queries.After receiving a query, the instrument interrogates the requeste

Strany 11

Program Header OptionsProgram headers can be sent using any combination of uppercase orlowercase ASCII characters. Instrument responses, however, are

Strany 12 - Talking to the Instrument

Program Data Syntax RulesProgram data is used to convey a variety of types of parameter informationrelated to the command header. At least one space m

Strany 13 - Program Message Syntax

Programmer’s GuidePublication number 54600-97032April 2001This guide contains programming information for the following Agilent oscilloscope models:54

Strany 14

All numbers are expected to be strings of ASCII characters. Thus, whensending the number 9, you would send a byte representing the ASCII code forthe c

Strany 15

Program Message TerminatorThe program instructions within a data message are executed after theprogram message terminator is received. The terminator

Strany 16 - Duplicate Mnemonics

2Programming Getting Started Artisan Technology Group - Quality Instrumentation ... Guaranteed | (888) 88-SOURCE | www.artisantg.com

Strany 17 - Query Command

Programming Getting Started This chapter explains how to set up the instrument, how to retrievesetup information and measurement results, how to digit

Strany 18 - Program Header Options

InitializationTo make sure the bus and all appropriate interfaces are in a known state,begin every program with an initialization statement. Agilent B

Strany 19 - Program Data Syntax Rules

AutoscaleThe AUTOSCALE feature performs a very useful function on unknownwaveforms by setting up the vertical channel, time base, and trigger level of

Strany 20

Example ProgramThis program demonstrates the basic command structure used to programthe oscilloscope.10 CLEAR 707 ! Initialize instrument interface20

Strany 21 - Selecting Multiple Subsystems

Using the DIGitize CommandThe DIGitize command is a macro that captures data satisfying thespecifications set up by the ACQuire subsystem. When the di

Strany 22 - Programming Getting Started

The following program example shows a typical setup:OUTPUT 707;":ACQUIRE:TYPE AVERAGE"<terminator>OUTPUT 707;":ACQUIRE:COMPLETE 1

Strany 23

Receiving Information from the InstrumentAfter receiving a query (command header followed by a question mark), theinstrument interrogates the requeste

Strany 24 - Initialization

Programming the OscilloscopeWhen you attach an interface module to the rear of the Agilent 54600-Series Oscilloscopes, the oscilloscope becomes progra

Strany 25 - Setting Up the Instrument

String VariablesThe output of the instrument may be numeric or character data dependingon what is queried. Refer to the specific commands for the form

Strany 26 - Example Program

Numeric VariablesThe following example shows the data being returned to a numeric variable:10 OUTPUT 707;":CHANNEL1:RANGE?"20 ENTER 707;Rang

Strany 27 - Using the DIGitize Command

Definite-Length Block Response DataDefinite-length block response data allows any type of device-dependent datato be transmitted over the system inter

Strany 28

Multiple QueriesYou can send multiple queries to the instrument within a single programmessage, but you must also read them back within a single progr

Strany 29

3Programming over GPIB Artisan Technology Group - Quality Instrumentation ... Guaranteed | (888) 88-SOURCE | www.artisantg.com

Strany 30 - String Variables

Programming over GPIB This section describes the GPIB interface functions and some generalconcepts. In general, these functions are defined by IEEE 48

Strany 31 - Numeric Variables

Interface CapabilitiesThe interface capabilities of the oscilloscope, as defined by IEEE 488.1, areSH1, AH1, T5, L4, SR1, RL1, PP0, DC1, DT1, C0, and

Strany 32

AddressingSet the instrument address by using the front panel controls on theoscilloscope after the GPIB interface has been installed on the rear pane

Strany 33 - Instrument Status

Communicating over the busSince GPIB can address multiple devices through the same interface card,the device address passed with the program message m

Strany 34 - Programming over GPIB

LockoutYou can use the SYSTem:LOCK ON command to disable front-panel controlwhile a program is running. By default, the instrument accepts and execute

Strany 35

CaptureOnce you initialize the oscilloscope, you can begin capturing data formeasurement. Remember that while the oscilloscope is responding tocommand

Strany 36 - Command and data concepts

4Programming over RS-232-CArtisan Technology Group - Quality Instrumentation ... Guaranteed | (888) 88-SOURCE | www.artisantg.com

Strany 37 - Addressing

Programming over RS-232-CThis section describes the interface functions and some generalconcepts of the RS-232-C. The RS-232-C interface on this instr

Strany 38 - Communicating over the bus

Interface OperationThe oscilloscope can be programmed with a controller over RS-232-C usingeither a minimum three-wire or extended hardwire interface.

Strany 39 - Bus Commands

Minimum three-wire interface with software protocolWith a three-wire interface, the software (as compared to interfacehardware) controls the data flow

Strany 40 - Programming over RS-232-C

Extended interface with hardware handshakeWith the extended interface, both the software and the hardware can controlthe data flow between the oscillo

Strany 41

The TD (Transmit Data) line from the oscilloscope must connect to the RD(Receive Data) line on the controller. Likewise, the RD line from theoscillosc

Strany 42 - Interface Operation

Configuring the InterfaceSet the baud rate and handshake protocol by using the front panel controlson the oscilloscope after the RS-232-C interface ha

Strany 43

Interface CapabilitiesThe baud rate, stop bits, parity, handshake protocol, and data bits must beconfigured exactly the same for both the controller a

Strany 44

Data BitsData bits are the number of bits sent and received per character thatrepresent the binary code of that character. Information is stored in by

Strany 45

Lockout CommandTo lockout the front panel controls use the system command LOCK. Whenthis function is on, all controls (except the power switch) are en

Strany 46 - Configuring the Interface

In This BookThe Agilent 54600-Series Oscilloscopes Programmer’s Guide is yourintroduction to programming the Agilent 54600-Series Oscilloscopes using

Strany 47

5Programming and DocumentationConventionsArtisan Technology Group - Quality Instrumentation ... Guaranteed | (888) 88-SOURCE | www.artisantg.com

Strany 48

Programming and DocumentationConventionsThis chapter covers conventions which are used in programming theinstrument, as well as conventions used in th

Strany 49 - Lockout Command

Command Set OrganizationThe command set is divided into common commands, root level commandsand sets of subsystem commands. Each of the groups of comm

Strany 50 - Conventions

Table 5-1Alphabetic Command Cross-ReferenceCommand SubsystemWhere UsedCommand SubsystemWhere UsedCommand SubsystemWhere UsedALLASToreAUToscaleBLANkBWL

Strany 51

Command SubsystemWhere UsedCommand SubsystemWhere UsedCommand SubsystemWhere UsedRANGeRANGeRANGe*RCLREFerenceREFerenceREJectRESetRISetimeROW*RSTRUN*SA

Strany 52 - Command Set Organization

The Command TreeThe command tree shows all of the commands and the relationship of thecommands to each other. The IEEE 488.2 common commands are not l

Strany 53 - Table 5-1

TDELtaTHREsholdsTSTArtTSTOpTVOLtUPPerVAMPlitudeVAVerageVBASeVDELtaVMAXVMINVPPVPSTArtVPSTOpVRMSVSTArt54600S13.CDRTIMebaseDELayMODERANGeREFerenceSETupVE

Strany 54

Subsystem CommandsSubsystem commands are grouped together under a common node of thecommand tree, such as the TIMEBASE commands. Only one subsystem ma

Strany 55 - The Command Tree

ExamplesThe OUTPUT statements in the examples are written using Agilent BASIC5.0. The quoted string is placed on the bus, followed by a carriage retur

Strany 56

Truncation RulesThe truncation rule for the mnemonics used in headers and alpha argumentsis:The mnemonic is the first four characters of the keyword

Strany 57

For information on oscilloscopeoperation, see the Agilent 54600-SeriesOscilloscopes User and Service Guide.For information on interfaceconfiguration,

Strany 58

Infinity RepresentationThe representation of infinity is 9.9E+37. This is also the value returnedwhen a measurement cannot be made.Sequential and Over

Strany 59 - Truncation Rules

Notation Conventions and DefinitionsThe following conventions and definitions are used in this manual and theonline Agilent 54600-Series Oscilloscopes

Strany 60 - Response Generation

Program ExamplesThe program examples given for commands in the onlineAgilent 54600-Series Oscilloscopes Programmer’s Reference were writtenusing the A

Strany 61

5–14Artisan Technology Group - Quality Instrumentation ... Guaranteed | (888) 88-SOURCE | www.artisantg.com

Strany 62 - Program Examples

6Status ReportingArtisan Technology Group - Quality Instrumentation ... Guaranteed | (888) 88-SOURCE | www.artisantg.com

Strany 63

Status ReportingIEEE 488.2 defines data structures, commands, and common bitdefinitions for status reporting on the interface. There are alsoinstrumen

Strany 64 - Status Reporting

Status Reporting Data StructuresFigure 6–1Status Reporting6–3Artisan Technology Group - Quality Instrumentation ... Guaranteed | (888) 88-SOURCE | www

Strany 65

Bit DefinitionsMAV - message available. Indicates whether there is a response in theoutput queue.ESB - event status bit. Indicates if any of the condi

Strany 66 - Figure 6–1

Operation Complete (*OPC)The IEEE 488.2 structure provides one technique which can be used to findout if any operation is finished. The *OPC command,

Strany 67

Serial PollThis oscilloscope supports the IEEE 488.1 serial poll feature. When a serialpoll of the instrument is requested, the RQS bit is returned on

Strany 68

viArtisan Technology Group - Quality Instrumentation ... Guaranteed | (888) 88-SOURCE | www.artisantg.com

Strany 69 - Serial Poll

After the serial poll is completed, the RQS bit in the oscilloscope Status ByteRegister is reset if it was set. Once a bit in the Status Byte Register

Strany 70

6–8Artisan Technology Group - Quality Instrumentation ... Guaranteed | (888) 88-SOURCE | www.artisantg.com

Strany 71

7Installing and Using theProgrammer’s ReferenceArtisan Technology Group - Quality Instrumentation ... Guaranteed | (888) 88-SOURCE | www.artisantg.com

Strany 72 - Programmer’s Reference

Installing and Using the Programmer’sReferenceThe Programmer’s Reference is supplied as an online help filereadable with the Microsoft Windows help vi

Strany 73 - Reference

To install the help file under Microsoft WindowsThe help file requires Microsoft Windows 95/98/NT running on anIBM-compatible PC. The file uses the Mi

Strany 74 - <drive>:\setup.exe

To get updated help and program files via the InternetThe latest versions of the help and example program files are available viathe internet using yo

Strany 75

To start the help fileTo open the help file under Microsoft Windows, double-click the“Programmer’s Reference” icon in the “Agilent 54600-SeriesOscillo

Strany 76 - To start the help file

To navigate through the help fileNavigate through the help file by clicking on highlighted text andbuttons.See your Microsoft Windows documentation fo

Strany 77 - in the Help window

8Programmer’s Quick ReferenceArtisan Technology Group - Quality Instrumentation ... Guaranteed | (888) 88-SOURCE | www.artisantg.com

Strany 78 - Programmer’s Quick Reference

IntroductionThe Programmer’s Quick Reference provides the commands andqueries with their corresponding arguments and returned formats forthe Agilent 5

Strany 79 - Introduction

Contents1 Introduction to Programming Talking to the Instrument 1–3Program Message Syntax 1–4Combining Commands from the Same Subsystem 1–7Duplicat

Strany 80 - Suffix Multipliers

ConventionsThe following conventions used in this guide include:< > Indicates that words or characters enclosed in angularbrackets symbolize a p

Strany 81 - Commands and Queries

Commands and QueriesThe following tables facilitate easy access to each command and query forthe Agilent 54600-Series Oscilloscopes. The commands and

Strany 82

Command Query Options and Query Returns:ACQuire:COMPlete <complete_argument>:ACQuire:COMPlete? <complete_argument> ::= 0 to 100; an integ

Strany 83 - COUPling {DC

Command Query Options and Query Returns:CHANnel<n>:PROBe <attenuation>:CHANnel<n>:PROBe? <attenuation> ::= X1, X10, X100 for

Strany 84

Command Query Options and Query Returns:DISPlay:GRID {ON | OFF | SIMPle | TV}:DISPlay:GRID? {ON | OFF | SIMPle | TV}:DISPlay:INVerse {ON | OFF}:DISP

Strany 85

Command Query Options and Query Returnsn/a :DISPlay:SETup? :DISPlay:ROW <row_number>; <row_number> ::= 1...20; an integer in NR1 formatCOL

Strany 86

Command Query Options and Query Returnsn/a :EXTernal:SETup? For the 54610:EXTernal:OFFSet <offset_value>; COUPling {DC | AC | GND}; PROBe {X1 |

Strany 87

Command Query Options and Query Returnsn/a *IDN? HEWLETT-PACKARD,<model>, 0, X.X<model> ::= the model number of the instrument<X.X>

Strany 88

Command Query Options and Query Returns:MEASure:FALLtime :MEASure:FALLtime? <return_value> ::= time in seconds between the 10% and 90% voltagele

Strany 89

Command Query Options and Query Returns:MEASure:UPPer <voltage>:MEASure:UPPer? <voltage> ::= the user-defined upper threshold in volts in

Strany 90

Minimum three-wire interface with software protocol 4–4Extended interface with hardware handshake 4–5Configuring the Interface 4–7Interface Capabil

Strany 91

Command Query Options and Query Returns:MENU <integer>:MENU? <integer> ::= the following:Menu NumberNo menu selected 0Channel 1 1Channel

Strany 92

Command Query Options and Query Returns:SEQuence:SETup {MASK | STEP}, <number>, <header> <setup_string>:SEQuence:SETup?{MASK | STEP

Strany 93

Command Query Options and Query Returns:STOP n/a n/a:SYSTem:DSP <string>n/a <string> ::= quoted ASCII stringn/a :SYSTem:ERRor? <error&g

Strany 94

Command Query Options and Query Returns:TRACe:MODE <N> {ON | OFF}:TRACe:MODE? <N> <N> ::= 1 to 100<return_state> ::= {ON | OFF

Strany 95

Command Query Options and Query Returns:TRIGger:SOURce <source>:TRIGger:SOURce? <source> ::= {CHANnel1 | CHANnel2 | EXTernal | LINE} for 5

Strany 96

Command Query Options and Query Returnsn/a :WAVeform:PREamble? <preamble_block> ::= <format NR1>, <type NR1>, <points NR1>, &

Strany 97

IndexAAddressing, 3–4 to 3–5alpha argument, 5–10Arguments, 1–5BBASIC, 1–3Baud rate, 4–7 to 4–8Block data, 1–5, 2–11CCableRS-232-C, 4–3carriage return,

Strany 98

OOPC - operation complete, 6–4Operation Complete, 6–5Output command, 1–4OUTPUT statement, 1–3Overlapped Commands, 5–11PParallel Poll, 6–6Parameters, 1

Strany 99

© Copyright AgilentTechnologies 1995-1996, 2001All Rights Reserved.Microsoft is a registeredtrademark of MicrosoftCorporation.Reproduction, adaptatio

Strany 100

Product WarrantyThis Agilent Technologiesproduct has a warrantyagainst defects in materialand workmanship for a periodof three years from date ofshipm

Komentáře k této Příručce

Žádné komentáře