Originating A Connection From The Ue; Make A Connection Using Test Mode Commands - Agilent Technologies 8960 Series Reference Manual

Hide thumbs Also See for 8960 Series:
Table of Contents

Advertisement

1970
STOP
1980
SUBEND

Originating a Connection from the UE

The code below illustrates how to make a connection by originating a call from the UE. This code is not
included in the control program available on-line for you to download. That example originates the connection
from the test set.
Synchronization between the control program and the test set is maintained by querying the test set for the
state of the connection between it and the UE. When a UE origination occurs, the CALL:CONN? hanging query
is used. It will return a 1 when the call is connected and a 0 otherwise. A state change detector is also armed to
ensure the query does not stop hanging before the state transition from "IDLE" to "CONNected" is able to
begin. Finally, to prevent the query from hanging indefinitely, which could occur if the mobile station is not
turned on, badly broken, or no one pushes the "send" button on the mobile, a timeout is set for this query. In
this example, 15 seconds is the value assigned to the timeout. After 15 seconds, the change detector is
disarmed and the query returns either a 1 or 0. For more information about call synchronization, refer to the
Internet.
OUTPUT Test_set;"CALL:CONN:TIM 15"
OUTPUT Test_set;"CALL:CONN:ARM"
OUTPUT Test_set;"CALL:CONN:STAT?"
DISP "Originate call from mobile station."
ENTER Test_set;Call_connected
IF NOT Call_connected THEN
OUTPUT Test_set;"CALL:END"
PRINT "Origination failed.
STOP
END IF

Make a Connection using Test Mode Commands

When the test set is operating in FDD Test Mode, you do not send any commands to the test set for this step.
The test set should already be properly configured and transmitting its downlink signal so that the UE can
detect and synchronize to it. In this step you either implement a pause in your program and wait for the UE to
be manually configured and begin transmitting, or send appropriate test mode commands to configure the UE
and begin its transmission.
NOTE
The method used to synchronize the UE with the test set is proprietary to the UE manufacturer.
The test set has no direct control of synchronization when the UE is operating in test mode.
! Set timeout time to 15 seconds
! Arm the change detector
! Initiate call connect state query
! Program will hang here until
! origination passes or fails
! Check if connection successful
Program terminated."
S:\Hp8960\E1963A WCDMA\4.0 release\Reference Guide\Chapters\wcdma_prog_getting_started_step4.fm
Step 4: Make a Connection
103

Advertisement

Table of Contents
loading

Table of Contents