Service Manuals, User Guides, Schematic Diagrams or docs for : Keithley 194 194A_903_01A

<< Back | Home

Most service manuals and schematics are PDF files, so You will need Adobre Acrobat Reader to view : Acrobat Download Some of the files are DjVu format. Readers and resources available here : DjVu Resources
For the compressed files, most common are zip and rar. Please, extract files with Your favorite compression software ( WinZip, WinRAR ... ) before viewing. If a document has multiple parts, You should download all, before extracting.
Good luck. Repair on Your own risk. Make sure You know what You are doing.




Image preview - the first page of the document
194A_903_01A


>> Download 194A_903_01A documenatation <<

Text preview - extract from the document
IEEE-488 Programming Guide
         Model 194A
    High Speed Voltmeter




    Ql.987, Keithley Instruments, Inc.
           Instrument Division
         Cleveland, Ohio, U.S.A.
 Document Number: l94A-903-01 Rev. A
                                                                                                                   TABLE OF CONTENTS

About This Programming                   Guide ..............................................................                                                                               ., .. 1

Computer        Programming            Syntax         .................................                                .: .. ., ............                  ; ..............                   3

Single Channel          Programming               ...................................                                    I ...............................                                       7

Dual Channel          Programming              .................                 -~__ __ ................................................                                                       11

Single and Continuous                Trigger Arming ..............................................                                                                  .,..........                17

SRQ~andErrorHandling..                      ...................                  ;...:~ ...........             .: .... .._.....        ....     ..I ......           .._ .......               21

Binary     DataTransfer         ..........................................................................                                                                                     29

Reading Buffer Operation                  ...................................                                    _. .. .,.............................                                          37

Using Translator ...................................................                                                   ._._. ................                         ._.~. ......              41

Using External Sample Triggering ................................                                                        _ .......................                             .,_ .,....       47

Generating       Bus Time Information                   ...............................................                                                     _ ...............                  55

Appendix        A - Device-Dependent                    Commands~               ......................                   .~~.;.:, .I. : ...........                 .,.........               ~A-1

Appendix        B - Data Formats ...................................................................                                                                                          B-l

Appendix        C - Status Words and SRQ Format I ..................................                                                                       .I ..............                  C-l

Appendix        D - Front Panel Modes and Equivalents IEEE-488 Commands                                                      ...........................                                      D-l

Appendix        E - Data~Transmission                  and NRFD Hold-off Times ......                                ; ..............................                                          E-l
ABOUT THIS PROGRAMMING GUIDE

This programming guide is intended as a tt.&xial on a number of programming conceptss
associated with the Model 194A. It is not intended to replace the IEEE-488 programming
section of the Instruction Manual, which should be consulted for detailed programming
information.


Programming concepts discussed in this guide include:

l   Programming a single-channel unit and obtaining data.
l   Programming a dual-channel unit and requesting data.
l   Single/continuous arming and~triggering.
l   Using binary data transfer to optimize speed.
l   Using SRQ and error word to minimize controller overhead.
l   Buffer operation, including use of buffer pointers.
l   Using Translator to increase readability and emulate-other instrumentation.


In addition to these fundamental concepts, applications programs for external sample tig-
gering, plotting data, and trigger performance and timing are also included. Fmally, reference
information such as device-dependent commands, data formats, and error words is also
supplied.




                                                                                            l/2
COMPUTER                          PROGRAMMING
SYNTAX

All the example programs in this guide are written in Hewlett=Packard BASIC 4.0, which
is used on the Series 200 and 300 computers. This programming language was chosen for
these examples because of its ease of understanding, as well as its powerful subset of com-
mands and statements controlling the IEEE-488 bus.


Most BASIC 4.0 statements are very similar to those used~.in other BASIC languages; however,
there are some statements associated with IEEE-488 bus Ii0 that require discussion. The
following provides a brief overview of some of the statements you will encounter in the various
programs in this guide. Refer to the BASIC 4.0 Reference for more detailed information.


OUTPUT

OUTPUT allows you to send a variable or string over the bus, and it may take on one c$
several forms. A typical syntax is:




In this instance, 7 specifies the interface select code, while 09 is the primary address of the
instrument. FlX is a literal string that will be transmitted to the instruments when the state-
ment~is executed.


ENTER

ENTER performs the opposite-function,~ allowing the transmission of data from the instru-
ment to the computer. Typical syntax for this statement is;




Again, 7 specifies the interface select code, while 09 represents the primary address of the
instrument. .A$ is a string variable into which incoming data is placed. Keep in mind that
A$ must be dimensioned large enough to hold all Rpected characters. As an alternative,
the ENTER statement-can directly input the data into a numeric variable, assuming that the
proper instrument data format is used.


SPOLL

SPOLL serial polls the instrumentand places its status byte in a numeric variable as follows:




Here again, 709 represents the interface select code and primary address of the instrument.
S is a numeric variable which will contain the decimal value of the status byte after the state-


                                                                                               3
ment is executed. The status byte-can then be checked by ANDing or BIXng S to determine
the status of the required bits. These bits can yield certain information such as reading,overflow
and ready for a new command.


BIT

BIT can be used to detetie        the bit status of numeric variables:




In this example, the status of bit 5 of the variable S is placed into A.


TRIGGER

TRIGGER sends a GET (Group Execute Trigger) to a device as follows:




A GET is one of many methods that can be used~& initiate a~Model 194A +?v+urement~
In order to~~use~~ form of triggering, the GET t$ger mode must be programmed, and
                this
the A/D converter must be armed. Note that programming a trigger mode over the bus
automatically arms the A/D converter.


ASSIGN

ASSIGN is used to assign an I/O path, as in the following example:




Following ASSIGN execution, the attribute D194 will be associated with the interface code
and primary address. Another form of ASSIGN is used to-define the IiO~buffer:

      ASSIGM IZufTU       BUFFER k8 `~


TRANSFER

TRANSFER is used to perform a rapld I/O data transfer sequence. Usualli, TRANSFER is
used with the binary dump feature oft the Model 194A for most~rapid data transfer. Using
this combination, data can be transferred at a rate as high as 90K bytes per second.


Typical syntax for TRANSFER is:

      TRAHSFER I?11194 TO WUF;         COU~KT-i00B,W~Il


In this instance, a total of 1000 bytes will be tr~mitted   from the Model 194A to~~the~internal
buffer.




4
STATUS

SX4TUS allows access to certain computer status registers. Most often, this statement is used
to either determine if aii SRQ has occurred, or dear an SRQ interrupt. Typical syntax is:




Here, 7 is the interface select code, and the second 7 is the status register being accessed.
The value of the status register is placed in the variable S when the statement is executed.


ON INTR and ENABLE INTR

These two statements work together to enable interrupts and to tell the computer where to
go for next line execution. A typical ON INTR statement is:




In this case, when the computer detects an IEEE-488 interrupt, it-begins executing the
subroutine at line 4000.


SRQ is the most often used type of interrupt for the IEEE-488 bus. Using BASIC 4.0, SRQ
interrupts are enabled as follows:




Once enabled, an SRQ Wi cause the computer to branch to the line number specified by
the ON INTR statement. Typically, an error handling subroutine will be incorporated at that
point to determine the reason for the SRQ and to handle any other required tasks.




                                                                                           5/6
SINGLE CHANNEL PROGRAMMING

PROGRAMMING CONCEPTS

l   Sending command strings to the Model 194A.
l   Obtaining data and displaying iton the computer CRT


PROGRAMMING CONSIDERATIONS

At the very least, it will be necessary to send commands to the instrument to set it up as
desired, and to request data back from the unit. The program below demonstrates~the basic
  recess for doing so. Note that if you have a dual-channel unit, you should proceed to
F rogTam 2.


PROGRAM OPERATION

Program 1 below demonstrates fundamental programming techniques for a single-channel
unit. Figure 1 is a flowchartof the program.


Before we can program the Model 194A, we must place the unit in remote as follows:




Next a prompt for the user to enter the desired command is displayed by the following pro-
gram statements:




Following execution of these two lines, the command suing resides in a string variable called
Command!& Now we can send the command string to the instrument with the `X" character
appended to the string to force command execution:




Since sending any AID (Analog-to-Digital) converter programming command to the instru-
ment will disarm the AID converter (see Table 1), you should always arm the AID converter
before requesting a reading. In this particular program, the AID converter is armed by sen-
ding the T26 command in the following manner:




                                                                                            7
                              I        PUT ,944
                                       IN REM3T.E
                                                       I




                                    INPUT COMMAND
                                        STRING



                                           c

                                    OUTPUT COMMAND
                                     STRING TO 194.4



                                           c

                                    ARM AND TRIGGER
                                     /vD CONVERTER




                                           c
                              r                        I




                  Figure 1. Single Channel Operation Flowchart


Note that the immediate trigger mode is used in this instance, so it is not necessary to~~trig-
ger the unit to process a measurement; however, with other tri er modes, it will be necessary
to trigger the unit before the unit will collect samples. Once PB ose samples are stored and
                                                                t
processed into a reading, the data is requested and displayed on the computer CRT as follows
(see Figure 2 for ASCII data format):

      80 ENTER   70'3;   Readings
      YMPEItKReading8
                                PREFIX                         BUFFER        EOIASSERTED~
                            (GO G-2, G3. GS)               SUFFIX (G2, GS)    WITH CF


                               +-I                             A              I
                               N DCV * 1.2345   E + 0. CH2,    80050   TERMlNATOR




          N=NORMAL    A                  kdST           TM,,           &&;ToRicRLF
          0 = OVERFLOW                                     NUMBER
          Z=ZEROED
              READING                           EXFCNENl
          I = INVALID
             MEASUREMENT

                    RMS = TRMS ~         ~~~
                                                   NOTE: SUFFER LCCATDN SHOWS
                    A"G = AVERAGE                        SAMPLE nnnni, IN WAVE
                    +PK = +PEAK                         FORM MODE
                    -PK = -PEAK
                    DIF = CHI  CH2
                    RAT = CH1ICH2
                    DEV I STANDARD DE",AT,ON
                    P.P = PEAK TO PEAK
                    INT= INlEGRAL
                    DC" = WAVEFORM
                    RCL = RECALL




                            Figure 2. ASCII Data Format


              Table 1. CommandsThat Disarm the A/D Converter


                      Command                   Description
                                           I
                                                Recall setup
                                                Function
                                                $P~z?
                                                Number of samples
                                                Filter
                                                Range
                                                Rate
                                                Trigger
                           w                    Delay
                           Z                    7mv-l


RUNNING THE PROGRAM

1. Enter the program into the computer.
2. Run the program by pressing the RUN key. The computer wti promptyou to type in your
   command:




                                                                                            9
3. Type in the desired command string and then press ENTER. Note that is not necessary
   to add the "X" character as it is automatically added by the program. For example, to pro-
   gram the average function and select autoranging, type in FlRO and press ENTER.
4; Once the measurement is completed and the reading is processed, the data string will
   appear on the computer display. A typical example is:




ACQUIRING A WAVEFORM USING ASCII DATA TRANSFER

The Model 194A can be used to capture a waveform and then send the data as a series of
readings representing the individual samples. Each individual data string will represents the
voltage of that-particular sample.


To use the Model 194A in this manner, program the instrument for the waveform (FO) func-
tion, and then repeatedly request readmgs until all samples have been transferred. For ex-
ample, to collect 100 samples and read them into a computer, modify Program 1 as follows:

      75  FUR I = 1 TU i0EI                          ! Loop 100 times.
      35 HEYT I
        c    ,                                       ! Loop back for next sample.


When the computer prompts~you for a command, type in `~ONO,lOO"             (include the quotes
because of the comma) and then press ENTER. You should see 100 successive readings ap-
pear on the display. Each reading is the numeric value of that particular sample. These samples
can also be placed into a BASIC array for further processing, if required.


For a larger number of samples, or for higher speed data transfer, refer to the section in this
guide on binary data transfer.


Program 1. Single Channel Operation

10
20
30
40
50
60
70
80
90
100
$10




 10
DUAL-CHANNEL                                   PROGRAMMING

PROGRAMMING CONCEPTS

l   Basic command programming of a dual-channel Model 194A.
l   Obtaining data fmn a dual-channel Model 194A.
l   Demonstrating that both channels share a single IEEE-488 output.
l   How to turn off an unused channel for maximum speed and to ensure that data comes
    only from the desired channel.


PROGRAMMING CONSIDERATIONS

Programming a dual-channel unit is somewhat more complex than a single-channel unit,
even for the most basic measurements. In particular, there are several important aspects~~to-
keep in mind:

1. Before sending programming commands to the instrument, select the desired channel
   by sending ClX for channel 1, or C2X for channel 2. Doing so will ensure that the com-
   mands you send will affect the desired channel. Note that sOme commands such as data
   format (G), SRQ (M), and terminator (Y) affect both channels, so it is not necessary to
   select the channel before using them.
2. The two channels share a common IEEE-488 output and reading buffer. As a result, there
   is no way to dictate which channel has the currentoutput when both channels are run-
   ning simultaneously. Thus, it will be necessary~for~youuse the channel suffii in the data
   string (Figure 2) to determine the source of the data. Alternatively, you can use the reading
   buffer for storage and request data later.
3. If one channel is not being used, it should be disabled by sending a trigger command
   for a tri er stimulus that will not occur. For example, if you are not using external trigger-
   ing, se*9 the co rnmand string CXI7X to disarm channel 1, or send C2XM( to disable
   channel 2. Turning off an unused channel will accomplish two things: (1) maximize
   throughput for the channel being used, and (2) make sure that data comes only from the
   channel in use.
4. Another way to keep the reading from both channels separated is to use the F command
   to re-calculate a reading. Even If a reading has already been calculated, you can force
   another calculation for the desired channel to place the result in the reading buffer. For
   example, send C2FlX to compute the average of the channel 2 measurement and place
   the results in the reading buffer. Keep in mind that the other channel must not be run-
   ning fast enough to overwrite this data between the time it is calculated and the time it
   is requested.


PROGRAM OPERATION

Program 2 below demonstrates dual-channel programming. Figure 3 is a flowchart showing
general program flow.




                                                                                                11
                  t
        I                     I
            ARM AND TRIGGER
               CHANNEL 2




        I_!    READING




Figure 3. Dual Channel Operation Flowchart
Usually, an instrument is sent a command at the start of a program to return it to some default
state. In the program below, this operation is performed by sending an SDC (Stile&d Device
Clear) as follows:




This statement instructs the Model 194A to assume its power-up (setup 1) configuration.


Next, we must make certain that the instrument is in remote before sending programming
commands as follows:

      3M REMOTE 76'3


Now we can program channel 1 and channel 2 as required. For channel 1, we will select
the 32OmVrange (Rl) and TRMS function (F2) as follows:




In a similar manner, channel 2 is programmed for the ZOOVrange (R4) using the average
function (Fl):




In both cases, you will note that the channel select (C) command is included at the fronts
of the command string containing range and function commands, followed by an execute
(X) character to assure proper channel selection. (Note that the X immediately after the C
command is not required, but it does no harm).


At this point, we have programmed both channels; however, since the range and function
were changed, we must arm both A/D converters. First, for channel 1, we have:




Again, each command string includes the channel selection command prior to the trigger
command that arms the AID converter. Here again, the immediate trigger mode vZ6) is used
so that no further triggering is necessary to start the AID converters. With other trigger sources,
you will be required to apply the necessary trigger stimuli to start the A/D converters after
arming them.


Now that both A/D converters are running and readings are being processed, it is a simple
matter to set up a loop to request and display readings:
This loop repeats indefinitely, with one reading per loop accessed and displayed.


RUNNING THE PROGRAM

1. Enter the program into the computer.
2. Press the computer RUN key tostart the program.
3. The program will send the commands to the instrument and then request readings from
   the Model 194A. Note that data will alternate between channel 1 and channel 2 depen-
   ding on which channel has the most current reading.


USING ONE CHANNEL

In order to use only one channel, program the other channel for an unused trigger source.
For example, to turn off channel 1, modify line 60 as follows:

      6'3 OUTPUT7B9j 6 gtCl:XTTK' 3


Similarly, to disable channel 2, modify line 70 to read:




In both instances, the disabled channel is programmed for the external trigger mode. Thus,
in order for that~channel to remain disabled, no trigger signal can be applied to the trigger
input~for that channel. Another way to disable a channel is to use T27 which causes only
one trigger; no further triggers will oCcur even with external triter input noise.


SELECTING CHANNEL OUTPUT

As discussed previously, you can dictate which channel has the current-output by program-
ming the desired channel for a particular function (so&as average), and then immediately
requesting a reading. In order to demonstrate this process, eliminate lines 80-110 from Pro-
gram 2, and add the following lines:

       20 OIJTPUT 789; L dCIFiX"                     !   Compute channel 1 reading.
       90 ENTER 7B9; ReadingB                        !   Get channel 1 reading.
      1BW PEIMT &adiigB                              !   Display channel 1 reading.
      110 OUTPUT70'3;  6 GCZFlX""                    !   Corn ute channel 2 reading.
      12'3 EMTEE 7W3; Readings                       !   Get
                                                           jtl annel2 reading.
      130 PEIMT Readings                             !   Display channel 2 reading.
      i4k3 GOTO 80                                   !   Repeat
      159 END




14
With these modifications, the computer display will alternate between channel 1 and chan-
nel 2 readings. Note, however, that one channel may still overwrite the other if there is a
large difference in processing speed between the two channels.


Program 2. Dual-Channel Programming
10    OIM ReadlngBlSOl               oincnalo"       reading     string
20    CLEAR 709                      Return    the 194.4 to default        conditions
30    RErlOTE 709                    Put the     134 into      renotc   mode
40    0UiP"T  709;"CIXRIF:X-         Program     chl    far  the 320mU range       and TRMS
50    0"iP"T  709i"C:XR4FiX"         Program     ch2 for     the 200" range      and Rverags
60    OUTPUT 709i"CIXT?fiX'          Am channci         I
70    OUTPlJT 709; ~CZXT26X"         Am channel    2
      ENTER 709,Readimp              Get a reading    fron     the   !94A
      PRINT Reading*                 Print  the rcadlng
      GOT" 80                        ReDeat
      TN,,




                                                                                               I5116
SINGLE AND CONTINUOUS
TRIGGER ARMING

PROGRAMMING CONCEPTS

l   Sending the arming command ~once with continuous arming.
l   Sending the arming command before each trigger with single arming.
l   Triggering the measurement with single and continuous arming.


PROGRAMMING CONSIDERATIONS

Before the Model 194A will take a measurement, it must be triggered with the stimulus deter-
mined by the selected trigger source: immediate, input signal, external, other channel, or
an IEEE-488 GET, X, or t& command. However, it will notrespond to a trigger unless the
A/D converter is first-armed and ready for a trrgger.


Basically, there are two A/D arming modes: single and continuous. With single arming, the
A/D converter must be re-armed before each trigger. However, in continuous, the A/D con-
verter need be armed only once, as the converter is automatically rearmed after each
measurement.


Over the IEEE-488 bus, arming takes place when the programming command for that par-
ticular trigger mode is received. For example, sending l3X (single arm, trigger on GET), arms
the A/D converter. Once armed, the measurement will be initiated when GET (Group Ex-
ecute Trigger) is received. In this instance, the T3X~command must be sent before each trig-
ger to arm the A/D converter. In contrast, if using continuous GET (TUC), you need send
the command only once before the first trigger, after which the A/Dconverter will automatical-
ly rearm itself after each measurement.


To summarize, there are several steps to programming and using triggers:

1. Fit select the channel to be armed and triggered. For example, to select channel 1, send
   ax.
2. Send the command to select the trigger source and arm the A/D converter. For example,
   toselect single, GET, send `l'3X.
3. Repeat steps 1 and 2 for the other channel, if desired.
4. Apply the necessary trigger stimulus to initiate the measurement. For example, issue the
   GET command to initiate the measurement.
5. If you have selected a single arming mode, remember to re-arm the converter before each
   trigger by sending the appropriate command over the bus.
PROGRAM OPERATION

Program 3 below demonstrates single arming using the GET trigger source. Figure 4 is a
flowchart of the program.


Once the unit is in remote, we can program the trigger source and arm the channel 1 A/D
converter as follows:




In this particular instance we have selected the single arm, GET trigger mode (T3X); after
the command is sent, the A/D converter will be armed.


Now that the A/D converters is armed, we can trigger a measurement by sending GET:




The next two lines request a reading from the Model 194A and display a reading on the CRT:

      40 ENTER 709;EeadingS
      5W PR I t.IT Readings


Here the incoming data string is stored in Readmg$.


One final line necessary to complete the loop is:




Note that this branch goes back to the line containing the re-arm (T3X) command because
a single-arm trigger mode is jn effect. If instead we had branched back only to line 30, only
one reading would be taken the first time through the loop.




18
                                  SENDGETTO
                                TRIGGER READING




                         Figure 4. Single Arming Flowchart


RUNNING THE PROGRAM

1. Enter the program into the computer.
2. Press the RUN key to execute the program.
3. The prc~gram will setup the Model 194A for the single, GET trigger mode, bigger a reading,
   and display it; A loop is set up to repeat the sequence indefinitely.
4. To demonstrate the importance of reaming, modify the pmgram as follows:

        60 GOTO38                                      ! Laop back to trigger.

5. Run the modified program and note that only one reading from channel 1 is displayed.
   With this change, the program now branches back to the trigger statement (line 30) in-
   stead of the arming statement (line 20). As a result, only one measurement and reading
   from channel 1 are processed on the fiist~time through.


CONTINUOUS ARMING

Program 3 can be modified for continuous, GET arming by changing the lines below. Figure
5 shows a flowchart for this modification.


                                                                                            19
     20   O,JTPClT   70'3;    6 ~I:l:


                                       SENDDNW




                                 DEFINE BRANCH AND
                                 ENABLE INTERRUPT




     Figure 9. Program4 Flowchart (Initialization and Main Task Section)

                                                                                      25
                             SERlAL POLL




      r-2-l
       RE(xIEST ERROR




     Figure 10. Program4 Flowchart(SRQ and Error Handling Section)




26
USING POLLED SRQ

The program can be modified for polled SRQ by making the modifications below:

1. Remove lines 70, SO, 90, lOO,-
                                and 550.
2. Add the following lines to the program:

        211 STATILlS717; Bus-lines                     ! Read bus lines.
        212 IF BIT IEusJines)=l                        I Check SRQ~bit status.
             THEN   GOSUH     Service_routine



With this modification, the controller must check the status of the SRQ line each time it goes
through its main task loop. Although from a user's standpoint the program may appear to
operate the same, the additional controller overhead necessary for p4led SRQ uv3ybecomq
restrictive in larger applications.




Iii0     OUTPUT 7091 -M40X"                     (
Program 4. SRQ and Error Handling (Cont.)




28
BINARY DATA TRANSFER

PROGRAMMING CONCEPTS

l   Data transfer speed considerations.
l   Transferring binary data from the Model 194A to the computer.
l   Converting binary data into displayable form.


PROGRAMMING CONSIDERATIONS

When a relatively large number ofsamples must be transferred from the Model 194A to the
computer, speed becomes an important consideration. The binary transfer mode of the in-
strument can significantly reduce the amount of time it takes to send 8 given amount of data
from the iwtrurnent to the computer. Binary transfer speeds up this operation for two reasons:
(1) the Model 194.4 is not required to process the data before s&ding it out, and (2) fewer
bytes are transferred per sample in the binary mode.


In order to take full advantage of binary transfer speed, the computer must be ca able of
transferring at a rate at least as high as that of the Model 194A--approximately 9I& bytes
per second in binary mode. The HP9816 used for the example program below can operate
at rates as high as l30K bytes per second using fast handshake transfer, but other controllers
may require use of DMA transfer to operate with sufficientspeed. In any event, the advan-
tage to using binary transfer can be seen by comparing the time necessary to~transfer 1000
samples. In binary mode using fast handshake, these sam les can be transmitted in only
65msec as opposed to 15 seconds required when using ASC E transfer and the ENTER state-
ment. (using an HP9816 computer).


The general binary formats for the G6 and G7 modes +weshown in Figure 11. In addition
to the one or two bytes for each sample, a~~&byte  status word and byte count (G7 only) is
added to the front of each byte sequence. The statis word contains unportant information
such as range, channel, function, as well as the exponent for the data. In order to display
the data, it must first be converted into ASCII form, as demonstrated in Program 5 below.


PROGRAM OPERATION

Program 5 below demonstrates fundamental concepts for obtaining bii    data and converting
it into displayable form. Figure I2 shows a general flowchart of the program.


Program highlights include:

1. The program first initializes variables and Ii0 paths (liies 10-70).
2. The instrument is then programmed for the waveform mode (FO), number of samples (NO),
   sampling rate (SO), binary data format (G7), and reading buffer disabled (lines 80-140).



                                                                                           29
       A.   GS




                 STATUS WORD 4 wn3                  *-Em MODE: EACH BYTE IS A SEPARATE SAMPLE.
                      SEE BELOW                     lS.S,T MODE: BYTE 1 IS MOST SIGNIFICANWYTE, BYTE 2 LEAST
                                                                SIGNIFICANT.


       B.   G7
                                                                                                          EOI



        MSB LSS       I    2   3   4     MSS LSB        MSB LSS    MS8 LSS   MSS LSS I..+$q


                                                                                                I               I
       5-5-+ww5----LT-l                                                                                 I
          BYTE      STATUS WORD           SAMPLE        SAfvwLE~  SAMPLE     SAMPLE                  S!MJLE
         COUNT         (CBYTES)             1              2         3                                  N
         (I-64K)     SEESELOW                    (BYTE PER SAMPLE IN 8.SIT MODE;




                     1 j ; j j / j j 1 RANGE              CHANNEL   1 ~TusED        1 FUNCT0N  1 EXPONENT      1
                       ' ' ! ! ! ! ! sEESELOwl          ,sEEBELow                    SEE BELOW 125 COMPLEMENTl

                                       1 = 1S-BIT MODE
                                       0 -8.SIT MODE
                                       1 =ZERCED



                   RANGE                                CHPlNNEL                              F"NCTlON




                                                                                6       0110        STANDARD DEVlATlON
                                                                                7       0111        INTEGRAL
                                                                               ~8       1000        RECALL
                                          IWTF      ,


     lN"ALlD NUMERIC: 1 = READING IS lN"ALlO
     SUFFER IN"ALID: 1 = MEASUREMENT SUFFER CONTAINS lN"ALlD SAMPLE
     OVERFLOW: I= READING SAMPLEO"~RFLOWED
     WAVE FORM IN SUFFER: 1= MEASUREMENT SUFFER CONTAlPJSAWA"EFORM
     8HG SIT MODE:    1 = 


◦ Jabse Service Manual Search 2024 ◦ Jabse PravopisonTap.bg ◦ Other service manual resources online : FixyaeServiceinfo