Agilent Technologies Agilent E5250A User Manual

Page 156

Advertising
background image

6-20

Agilent E5250A User’s Guide, Edition 11

Programming the E5250A
Programming Examples

Program List:

10 ! Example: Using Couple Port
20 !
30 INTEGER Complete
40 DIM

Channel$[100]

50 !

(Substrate,Gate,Drain,Source)

60 Channel$="(@101,202,303,505)"
70 !
80 ! Put Instrument Initialize Routine here
90 !
100 ASSIGN @Hp5250 TO 722
110 OUTPUT @Hp5250;"*RST"
120 OUTPUT @Hp5250;":ROUT:FUNC ACON"
130 OUTPUT @Hp5250;":ROUT:CONN:RULE ALL,SROU"
140 OUTPUT @Hp5250;":ROUT:CONN:SEQ ALL,BBM"

Line

Number

Description

40

Declares data size of Channel$, which is used as channel_list
parameter.

60

Defines the desired channel_list.

80

Here, insert the initialization routine for your measurement
instrument.

110

Resets the E5250A.

120

Sets the E5250A to Auto channel configuration mode.

130

Sets the connection rule to Single.

140

Sets the connection sequence to Break-Before-Make.

Advertising