Agilent Technologies HP 54601B Specifiche

Navigare online o scaricare Specifiche per Misurazione, test & controllo Agilent Technologies HP 54601B. Agilent Technologies HP 54601B Specifications Manuale Utente

  • Scaricare
  • Aggiungi ai miei manuali
  • Stampa
  • Pagina
    / 100
  • Indice
  • SEGNALIBRI
  • Valutato. / 5. Basato su recensioni clienti
Vedere la pagina 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
Vedere la pagina 0
1 2 3 4 5 6 ... 99 100

Sommario

Pagina 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

Pagina 2 - Agilent 54600-Series

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

Pagina 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

Pagina 4

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

Pagina 5 - In This Book

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

Pagina 6

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

Pagina 7

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

Pagina 8 - Contents

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

Pagina 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

Pagina 10 - Introduction to Programming

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

Pagina 11

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

Pagina 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

Pagina 13 - Program Message Syntax

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

Pagina 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

Pagina 15

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

Pagina 16 - Duplicate Mnemonics

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

Pagina 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

Pagina 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

Pagina 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

Pagina 20

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

Pagina 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

Pagina 22 - Programming Getting Started

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

Pagina 23

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

Pagina 24 - Initialization

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

Pagina 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

Pagina 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

Pagina 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

Pagina 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

Pagina 29

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

Pagina 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

Pagina 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

Pagina 32

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

Pagina 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

Pagina 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

Pagina 35

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

Pagina 36 - Command and data concepts

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

Pagina 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

Pagina 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.

Pagina 39 - Bus Commands

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

Pagina 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

Pagina 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

Pagina 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

Pagina 43

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

Pagina 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

Pagina 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

Pagina 46 - Configuring the Interface

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

Pagina 47

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

Pagina 48

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

Pagina 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

Pagina 50 - Conventions

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

Pagina 51

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

Pagina 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

Pagina 53 - Table 5-1

TDELtaTHREsholdsTSTArtTSTOpTVOLtUPPerVAMPlitudeVAVerageVBASeVDELtaVMAXVMINVPPVPSTArtVPSTOpVRMSVSTArt54600S13.CDRTIMebaseDELayMODERANGeREFerenceSETupVE

Pagina 54

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

Pagina 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

Pagina 56

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

Pagina 57

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

Pagina 58

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

Pagina 59 - Truncation Rules

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

Pagina 60 - Response Generation

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

Pagina 61

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

Pagina 62 - Program Examples

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

Pagina 63

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

Pagina 64 - Status Reporting

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

Pagina 65

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

Pagina 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,

Pagina 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

Pagina 68

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

Pagina 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

Pagina 70

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

Pagina 71

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

Pagina 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

Pagina 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

Pagina 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

Pagina 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

Pagina 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

Pagina 77 - in the Help window

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

Pagina 78 - Programmer’s Quick Reference

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

Pagina 79 - Introduction

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

Pagina 80 - Suffix Multipliers

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

Pagina 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

Pagina 82

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

Pagina 83 - COUPling {DC

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

Pagina 84

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

Pagina 85

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

Pagina 86

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

Pagina 87

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

Pagina 88

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

Pagina 89

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

Pagina 90

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

Pagina 91

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

Pagina 92

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

Pagina 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

Pagina 94

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

Pagina 95

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

Pagina 96

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

Pagina 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,

Pagina 98

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

Pagina 99

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

Pagina 100

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

Commenti su questo manuale

Nessun commento