5492GPIB B&K Precision, 5492GPIB Datasheet - Page 89

no-image

5492GPIB

Manufacturer Part Number
5492GPIB
Description
DMM BENCH 5 1/2DGT WITH GPIB CRD
Manufacturer
B&K Precision
Type
Digital (DMM)r
Datasheets

Specifications of 5492GPIB

Includes
Test Leads
Style
Bench
Display Digits
5.5
Display Type
VFD, Dual
Display Count
120000
Function
Voltage, Current, Resistance, Frequency
Functions, Extra
Continuity, dB, Diode Test
Features
Hold, Min/Max, RS-232 Port
Ranging
Auto/Manual
Response
True RMS
Accuracy
+/- 0.012 %
Lead Free Status / Rohs Status
Lead free / RoHS Compliant
END
'======================================================================
'
' This subroutine will notify you that the meter returned an invalid
' serial poll response byte. The error message will be printed along with
' the serial poll response byte.
'
' The NI-488 function IBONL is called to disable the hardware and software.
'
' The STOP command will terminate this program.
'======================================================================
'
SUB dvmerr (msg$, spr%) STATIC
' Call the IBONL function to disable the hardware and software.
END SUB
'======================================================================
'
' This subroutine will notify you that a NI-488 function failed by printing
' an error message. The status variable IBSTA% will also be printed
' in hexadecimal along with the mnemonic meaning of the bit position.
' The status variable IBERR% will be printed in decimal along with the
' mnemonic meaning of the decimal value. The status variable IBCNT% will
' be printed in decimal.
'
' The NI-488 function IBONL is called to disable the hardware and software.
'
' The STOP command will terminate this program.
'======================================================================
'
SUB gpiberr (msg$) STATIC
CALL ibonl(dvm%, 0)
PRINT msg$
PRINT "Status Byte = &H"; HEX$(spr%)
CALL ibonl(dvm%, 0)
STOP
PRINT msg$
PRINT "ibsta = &H"; HEX$(ibsta%); " <";
IF ibsta% AND EERR
IF ibsta% AND TIMO
IF ibsta% AND EEND
IF ibsta% AND SRQI
IF ibsta% AND RQS
IF ibsta% AND SPOLL THEN PRINT " SPOLL";
IF ibsta% AND EEVENT THEN PRINT " EVENT";
IF ibsta% AND CMPL
Subroutine DVMERR
Subroutine GPIBERR
THEN PRINT " SRQI";
THEN PRINT " RQS";
THEN PRINT " TIMO";
THEN PRINT " ERR";
THEN PRINT " CMPL";
THEN PRINT " END";
89