Reference:
A. ABORt — With continuous initiation disabled, the 2182 goes into the idle state. With
continuous initiation enabled, operation continues at the top of the trigger model.
B. INITiate — Whenever the instrument is operating within the trigger model, sending this
command causes an error and will be ignored.
C. INITiate:CONTinuous — With continuous initiation enabled, you cannot use the
READ? command or set sample count (SAMPle:COUNt) greater than one.
D. FETch? — See Section 13 for details on this Signal Oriented Measurement Command.
E. READ? — Use this one query command to perform the tasks of the three commands.
See Section 13 for details on this Signal Oriented Measurement Command.
F. TRIGger:SOURce — With the timer control source selected, use the TRIGger:TIMer
command to set the interval.
G. DELay:AUTO — Auto delay period is 5msec for the 100V range, and 1msec for all other
voltage ranges. Disabling auto delay sets the delay time to 0.
H. TRIGger:SIGNal — Send this action command to bypass the control source when you
do not wish to wait for the programmed event to occur. The instrument must be waiting
at the control source for the event when this command is sent. Otherwise, an error occurs
and the command is ignored.
I. SAMPle:COUNt — A sample count >1 specifies how many readings will automatically
be stored in the buffer. However, with continuous initiation enabled, you cannot set the
sample count greater than one.
J. SENSe:HOLD — See “Reading hold (autosettle)”, located in this section, for details on
using Hold.
Programming example
The following program fragment triggers (and stores in the buffer) 10 readings, which are
then displayed on the computer CRT.
CALL SEND(7,“*rst”,status%) ‘Restore *RST defaults.
CALL SEND(7,“:trig:del 0.5”,status%) ‘Set delay for 0.5sec.
CALL SEND(7,“:samp:coun 10”,status%) ‘Set sample count to 10.
CALL SEND(7,“:read?”,status%) ‘Trigger and request readings.
reading$ = SPACE$(80)
CALL ENTER(reading$, length%, 7,status%) ‘Address 2182 to talk.
PRINT reading$ ‘Display the 10 readings on
‘the CRT.
Triggering 7-17