CALL:AGPS

CALL:AGPS

Last updated: April 29, 2009

GPIB Command Conventions

CALL:AGPSystem:PIPE:MORiginated:PDDMessage[:DATA]?

Function

Queries the A-GPS pipe received messages (see A-GPS Pipe ).

The test set can store up to 10 PDDM messages to be queried by FIFO (First In First Out). Each time this GPIB query is made to retrieve a PDDM message, a single message will be returned (the oldest one), along with the message length and the sequence number of this message. After the message is queried, it will be cleared from the test set.

Query

Range: This query returns three results which are separated by comma ",":

  1. the length of PDDM message in unit of bits, ranging from 0 to 2040;
  2. the sequence number of this PDDM message, ranging from 0 to 2^32;
  3. the PDDM message in hex string with the maximum length of 510.

*RST Setting

0,0,"" (the first 0 represents the length, the second 0 represents the sequence number and "" represents that PDMM message is Null)
Requirements Lab Application Revision: C.00.08 and above

Programming Example

 
OUTPUT 714;"CALL:AGPSystem:PIPE:MORiginated:PDDMessage?" 
!Queries the A-GPS pipe received messages. 

CALL:AGPSystem:PIPE:MORiginated:PDDMessage:CLEar

Function

A-GPS Pipe Clear Received Messages action. This command clears all the mobile-originated PDDM messages that are stored in the test set. See A-GPS Pipe .

Setting

None

Query

None

*RST Setting

None
Requirements Lab Application Revision: C.00.08 and above

Programming Example

 
OUTPUT 714;"CALL:AGPSystem:PIPE:MORiginated:PDDMessage:CLEar" 
!Clear all the received A-GPS pipe messages.

CALL:AGPSystem:PIPE:MORiginated:PDDMessage:COUNt?

Function

Queries the A-GPS Pipe Received Messages Count. See A-GPS Pipe .

Query

Range: 0 to 10

*RST Setting

0
Requirements Lab Application Revision: C.00.08 and above

Programming Example

 
OUTPUT 714;"CALL:AGPSystem:PIPE:MORiginated:PDDMessage:COUNt?" 
!Queries the A-GPS pipe messages count.

CALL:AGPSystem:PIPE:MTERminated:PDDMessage[:DATA]

Function

When the operating mode is Active Cell, this command sends an A-GPS Pipe Message (See A-GPS Pipe ) with the required parameters.

Setting

Range: This command have two parameters which are separated by comma ",":

  1. the bit length of PDDM message in integer, ranging from 0 to 2040;
  2. the PDMM message which is a hex string with the maximum string length of 510.

   
NOTE
1. The string length of the second parameter (PDDM message content) must be an even number.

2. The length of the second parameter (PDDM message content) must be consistent with the first parameter (length).


   

Query

Same as setting

*RST Setting

0,"" (0 represents the length and "" represents that PDMM message is Null)
Requirements Lab Application Revision: C.00.08 and above

Programming Example

 
OUTPUT 714;"CALL:AGPSystem:PIPE:MTERminated:PDDMessage 24,'ABCDEF'" 
!Send an A-GPS pipe message 'ABCDEF'with the length is 24 bits.