238
S:\Hp8960\E1962B CDMA 2000\Pi Release\Reference Guide\Chapters\cdma2000_prog_sync_callpro.fm
Call Processing Event Synchronization
Call Processing Subsystem Overlapped Command Synchronization Commands
Table 14. Overlapped Commands
Command Purpose Of Command Example
:DONE? Returns a 0 if the associated command’s
pending operation flag is true, or a 1 if it
is false.
10 OUTPUT 714;”CALL:TCH 65”
20 OUTPUT 714;”SETUP:TXP:CONT OFF”
30 OUTPUT 714;”SETUP:PFER:CONT OFF”
40 REPEAT
50 OUTPUT 714;”CALL:TCH:DONE?”
60 ENTER 714;Process_done
70 UNTIL Process_done
80 OUTPUT 714;INIT:TXP;PFER”
90 END
The example shown is from the E1960A GSM test
application. Commands the test set to perform a
traffic channel handover and execute two setup
commands. After the two setup commands have
finished, the :DONE? command is used to find out if
the handover is finished
:SEQuential Forces an overlapped command to
execute in a sequential manner. No
subsequent commands will be executed
until the pending operation flag for this
operation is false.
OUTPUT 714;”CALL:TCH:SEQ 65”
The example shown is from the E1960A GSM test
application. Commands the test set to perform a
traffic channel handover and to not execute any
more commands until the pending operation flag
associated with the CALL:TCH command is false.
:WAIT Forces the test set to wait until the
associated command’s pending
operation flag is false before executing
any more commands.
10 OUTPUT 714;”CALL:TCH 65”
20 OUTPUT 714;”SETUP:TXP:CONT OFF”
30 OUTPUT 714;”SETUP:PFER:CONT OFF”
40 OUTPUT 714;”CALL:TCH:WAIT”
50 OUTPUT 714;”INIT:TXP;PFER”
60 END
The example shown is from the E1960A GSM test
application. Commands the test set to perform a
traffic channel handover and execute two setup
commands. After the two setup commands have
finished, the :WAIT command is sent to prevent the
test set from executing the INITiate command until
the handover is finished.