86
_____________________________________________________________________________________________
_____________________________________________________________________________________________
Program
comments
(3) Saving the 3532-50 settings using the panel save function
Summary
This program makes the settings for the 3532-50 and saves the settings to
the panel number 1 as "TEST1".
Program List
10 OPEN "COM1:9600,N,8,1" FOR RANDOM AS #1
20 PRINT #1,":FREQ 100E3"
30 PRINT #1,":LEV V"
40 PRINT #1,":LEV:VOLT 1.00;CVOLT 0.50;CCURR 5.00E-3"
50 PRINT #1,":LIM OFF"
60 PRINT #1,":LIM:CURR 15.00E-3;VOLT 3.00"
70 PRINT #1,":RANG:AUTO ON"
80 PRINT #1,":TRIG INT"
90 PRINT #1,":TRIG:DELA 0.02"
100 PRINT #1,":AVER 2"
110 PRINT #1,":SPEE SLOW"
120 PRINT #1,":BEEP:KEY ON;COMP NG"
130 PRINT #1,":PAR1 Z;:PAR2 PHAS"
140 PRINT #1,":PAR3 CP;:PAR4 D"
150 PRINT #1,":SAVE 1,TEST1"
160 CLOSE
170 END
Line Comments
10 Open the RS-232C circuit file.
20 Set the test frequency to 100 kHz.
30 Select the voltage test signal level.
40 Make the following settings using the current path.
V(open circuit voltage): 1 V
CV(constant voltage): 0.5 V (value setting only)
CC(constant current): 5 mA (value setting only)
50 Set the limit value setting function to OFF
60 Set the current limit value to 15 mA (value setting only).
Set the voltage limit value to 3 V (value setting only).
70 Enable auto-ranging.
80 Select internal trigger mode.
90 Set the trigger delay time to 20 ms.
100 Set the count for averaging to 2.
110 Set the testing speed to SLOW.
120 Set the beep sound.
130-140 Set displayed parameters.
150 Save the settings to the panel number 1.
160 Close the RS-232C circuit file.