116
S:\Hp8960\E1962B CDMA 2000\Pi Release\Reference Guide\Chapters\cdma2000_prog_getting_started_step6_ac.fm
Step 6: Reconfigure Test Set and Mobile Station Connection Parameters
Step 6: Reconfigure Test Set and Mobile Station Connection Parameters
Reconfigure the Test Set
The example below contains the code appropriate for handing the call off to a different channel.
600 !***Set up a hard handoff***
610 OUTPUT Testset;”CALL:SET:BAND USC”
620 OUTPUT Testset;”CALL:SET:CHAN “;Handoffchan
630 !
640 !***Perform a hard handoff***
650 OUTPUT Testset;”CALL:HAND”
660 OUTPUT Testset;”CALL:CONN:STAT?”
670 ENTER Testset;Call_connected
680 IF NOT Call_connected THEN
690 DISP “Handoff attempt failed, program stopped”
700 STOP
710 ELSE
720 PRINT “Handoff completed”
730 DISP “Call connected”
731 PRINT
740 END IF
784 !
Reconfigure the MS
There are no MS parameters reconfigured in this program example.