180 PRINT
190 PRINT "Connect DMM HI and LO to AFG Output."
200 DISP "Press ’Continue’ when ready"
210 PAUSE
220 CLEAR SCREEN
230 !
240 !---------- Set up AFG ----------
250 OUTPUT @Afg;"*RST;*CLS"
!Reset AFG
260 WAIT .5
270 !
280 OUTPUT @Afg;"OUTP:LOAD INF;";
!Infinite load
290 OUTPUT @Afg;":VOLT 0.001;";
!Set amplitude
300 OUTPUT @Afg;":FUNC USER"
!USER waveform
310 !
320 CALL Def_seg_zeros
330 OUTPUT @Afg;"FUNC:USER A"
!Select sequence
340 OUTPUT @Afg;"INIT:IMM"
350 !
360 !---------- Perform test ----------
370 FOR I=1 TO 7
380 OUTPUT @Afg;"VOLT:OFFS "&VAL$(Offset(I))
!Set offset
390 PRINT "OFFSET: ";Offset(I)
400 !
410 DISP "Record DMM reading, then press ’Continue’"
420 PAUSE
430 DISP
440 NEXT I
!Next offset
450 !
460 END
470 !
480 !Define segment consisting of all zeros
490 SUB Def_seg_zeros
500 COM @Afg
510 DIM Array(1:4096)
520 !
530 FOR I=1 TO 4096
540 Array(I)=0.
550 NEXT I
560 !
570 OUTPUT @Afg;"LIST:SEGM:SEL A"
!Segment name
580 OUTPUT @Afg;"LIST:SEGM:VOLT";Array(*)
!Segment points
590 SUBEND
Chapter 2
Verification Tests 35
Содержание E1340A
Страница 6: ...Notes 6 HP E1340A Arbitrary Function Generator Service Manual ...
Страница 8: ......
Страница 10: ...Notes 12 What s in this Manual HP E1340A Service Manual ...
Страница 18: ...Notes 20 General Information Chapter 1 ...
Страница 74: ...Notes 76 Adjustments Chapter 3 ...
Страница 78: ...Notes 80 Replaceable Parts Chapter 4 ...
Страница 104: ...Notes 106 Verification Tests C Programs Appendix A ...