Step 2: Configure Test Set and Mobile Station Parameters

Step 2: Configure Test Set and Mobile Station Parameters

Last updated: April 14, 2005

In this step you set up the parameters which characterize the test set's forward channel signal, the access terminal's reverse channel signal, and the connection between them.

You may choose to configure some of the following parameters during this step:

Some of these parameters are set or changed while performing specific C.S0033 tests as discussed in Step 5: INITiate and FETCh Measurements or during Step 6: Reconfigure Test Set and Mobile Station Connection Parameters .

An excerpt from the comprehensive example program is shown below:

 
620 !**************************************************************************
630 ! STEP 2: CONFIGURE TEST SET AND ACCESS TERMINAL PARAMETERS
640 !**************************************************************************
650 !
660 !***Variable declarations for call setup. (AT-specific, change as needed)***
670 !
680       Band$="USC"                  ! Set cell band
690       Primary_channel=400          ! Set RF channel for access network
700       Country_code=310             ! Set Access Terminal Country Code
710       Subnet_mask=104              ! Set Sector Subnet mask
720       At_max_power$="DBM23"        ! Set AT Maximum Power
730                                    ! (DBM8, DBM13, DBM18, DBM20, DBM23
740                                    !  DBM27, DBM28, DBM31, DBM33)
750       Init_cell_power=-50
760       ! Set initial cell power for connection setup

970       OUTPUT Testset;"CALL:APPLICATION:TAPROTOCOL:LIMITED OFF"
980       ! If you are testing an access terminal with Qualcomm
990       ! DMSS 5500 Release 3.1, you must set Limited TAP to On

2560       DISP "Setting up Test Set and Access Terminal Parameters"
2570 !
2580       OUTPUT Testset;"CALL:BAND ";Band$
2590       ! Set Cell Band
2600       OUTPUT Testset;"CALL:CHAN ";Primary_channel
2610       ! Set RF Channel for selected Cell Band
2620       OUTPUT Testset;"CALL:POW ";Init_cell_power
2630       ! Set and turns on Cell Power for connection
2640       OUTPUT Testset;"CALL:MS:POWER:MAXIMUM "&At_max_power$
2650       ! Set AT maximum expected power
2660       OUTPUT Testset;"CALL:MCCODE ";Country_code
2670       ! Set AT country code specified
2680       OUTPUT Testset;"CALL:PARAMETER:SECTOR:SMASK ";Subnet_mask
2690       ! Set MS subnet mask specified

Navigation