114
S:\Hp8960\E1962B CDMA 2000\Pi Release\Reference Guide\Chapters\cdma2000_prog_getting_started_step5_ac.fm
Step 5: INITiate and FETCh Measurements
1091 Print_results(“Maximum Power dBW:”,Avg_power_dbw,”dBW”)
1095 PRINT
1097 !
1098 Max_time=PROUND(TIMEDATE-Max_timer,-2)
1099 Print_results(“Max Power Test Time= “,Max_time,”secs”)
1100 PRINT
1101 !
1102 !***Post Test clean up***
1103 !
1104 OUTPUT Testset;”CALL:CLPC:REV:MODE ACT”
1105 !
1106 !*******************
1107 !Minimum Power Test*
1108 !*******************
1109 !
1110 !
1111 !***Set up measurement parameters***
1112 !
1113 Ior=-25
1114 Pilot=-7
1115 Traffic=-7.4
1116 !
1118 OUTPUT Testset;”CALL:CONN:DROP:TIM 0”
1119 OUTPUT Testset;”CALL:POW “;Ior
1120 OUTPUT Testset;”CALL:PIL “;Pilot
1121 OUTPUT Testset;”CALL:FCH “;Traffic
1122 OUTPUT Testset;”CALL:CLPC:REV:MODE DOWN”
1124 !
1125 !***Obtain measurement results***
1126 !
1127 WAIT 1
1128 Min_timer=TIMEDATE
1129 OUTPUT Testset;”INIT:CPOW”
1130 LOOP
1131 OUTPUT Testset;”INIT:DONE?”
1132 ENTER Testset;Meas_done$
1133 EXIT IF Meas_done$=”CPOW”
1134 END LOOP
1135 !
1136 OUTPUT Testset;”FETC:CPOW?”
1137 ENTER Testset;Integrity,Channel_power
1138 !
1139 !
1140 IF Integrity=6 THEN
1142 OUTPUT Testset;”RFAN:CONT:POW:AUTO OFF”
1143 OUTPUT Testset;”RFAN:MAN:POW “;INT(Channel_power);” DBM”
1145 END IF
1146 EXIT IF Meas_done$=”CPOW” AND Integrity=0
1147 END LOOP
1148 !
1149 !
1150 ***Print measurement results
1151 !