Keysight E4980A/AL Precision LCR Meter 255
Overview of Remote Control
Data Buffer Memory
8-
Data Buffer Memory
Data Buffer Memory
The E4980A/AL has a data buffer memory function. The data buffer memory
can hold up to 201 sets of measurement results, and all buffered measurement
results are transferred at once to the controller by using the :MEM:READ?
DBUF command. This function makes it possible to greatly reduce the overall
time for data transfer.
Refer to the following figure. Line numbers in the figure correspond to those of
the reference codes below the figure.
Figure 8-16 Data buffer memory
10 OPTION BASE 1
20 DIM D(5,4)
30 ASSIGN @Adrs TO 717
40 REMOTE @Adrs
50 OUTPUT @Adrs;"*RST;*CLS"
60 OUTPUT @Adrs;"FORM ASCII"
70 OUTPUT @Adrs;"TRIG:SOUR BUS"
80 OUTPUT @Adrs;"DISP:PAGE MEAS"
90 OUTPUT @Adrs;"MEM:DIM DBUF,5"
100 OUTPUT @Adrs;"MEM:FILL DBUF"
110 FOR I=1 TO 5
120 OUTPUT @Adrs;"TRIGGER:IMMEDIATE"
130 NEXT I
140 OUTPUT @Adrs;"MEM:READ? DBUF"
150 ENTER @Adrs;D(*)