HP 4155A/4156A SCPI Programming
Programming: Measurement Setup
Example
To load measurement setup data, then change the sweep start and stop
values:
10 ASSIGN @Hp4155 TO 800
20 !
30 OUTPUT @Hp4155;":MMEM:LOAD:STAT 0,'SWP.MES','DISK'"
40 !
50 Swp_start=1
60 Swp_stop=10
70 !
80 OUTPUT @Hp4155;":PAGE:MEAS:VAR1:STAR";Swp_start
90 OUTPUT @Hp4155;":PAGE:MEAS:VAR1:STOP";Swp_stop
100 !
110 END
Line Number Description
10 Assigns I/O path to control HP 4155A/4156A.
30 Loads measurement setup data from diskette le
SWP.MES
.
80 Changes start value of VAR1.
90 Changes stop value of VAR1.
4-10