Agilent Technologies E8285A manual Programming Example for Strength Field

Models: E8285A

1 464
Download 464 pages 57.8 Kb
Page 416
Image 416

Chapter 4, Description of Fields

Fields

Strength

This column in the CDMA Mobile Reporting table lists the power level most recently measured and reported by the mobile station for each pilot the mobile station is currently tracking.

All numbers displayed in the CDMA Mobile Reporting table reflect the last pilot strength message received from a mobile station. Before any numbers are displayed, a call must be connected and Sector B must be transmitting at a high enough power level to cross either of two thresholds set up by the T_Add and T_Comp fields.

The CDMA Mobile Reporting table can be cleared by selecting the Pilot Meas (Clear) field.

GPIB Example

“DISP CMOB;CDMA:MOB:PIL:STR?“

queries the results displayed in the CDMA Mobile Reporting table.

The value returned by the Test Set includes Status, PN Offset, Strength, and Keep for each pilot currently being tracked by the mobile station. These values are sent as a comma-separated list of IEEE floating point numbers, 16 characters each, ending with a line feed character.

NOTE:If no values are displayed in the CDMA Mobile Reporting table, the query example shown above will return only the line feed character.

Programming Example for Strength Field

10 ! RE-STORE "C:\WENDYL\READ_MRT"

20 CLEAR SCREEN

30 DIM Pil_str$[500]

40OUTPUT 714;"CDMA:MOB:PIL:STR?"

50ENTER 714;Pil_str$

60Length=LEN(Pil_str$)

70Num_pn=(Length+1) DIV 68 !Determine number of Pilots in the

table

80FOR I=1 TO Num_pn

90Stat(I)=VAL(Pil_str$[1;16])

100PRINT "Pilot";I;"status is ";Stat(I)

110Pnofst(I)=VAL(Pil_str$[18;16])

120PRINT "Pilot";I;"PN Offset is";Pnofst(I)

130Str(I)=VAL(Pil_str$[35;16])

140PRINT "Pilot";I;"pilot strength is ";Str(I)

150 Keep(I)=VAL(Pil_str$[52;16])

160PRINT "Pilot";I;"keep bit is ";Keep(I)

170IF I<>Num_pn THEN

180Pil_str$=Pil_str$[69,LEN(Pil_str$)] !Move to next Pilot in the string

190PRINT

200

END IF

416

S:\agilent\e8285\REFGUIDE\MANUAL\fields.chp

Page 416
Image 416
Agilent Technologies E8285A manual Programming Example for Strength Field