gpsPPPStatus (Function)

Top  Previous  Next

Architecture:

NX32, NX32L

Firmware version:

4.10 / 1.00.00


Returns the number of satellites using Precise Point Positioning (PPP) for increased accuracy.

This is only available with some GNSS modules.

 

Input:

None.

 

Returns: INT

>0

Number of satellites using PPP.

 0

PPP is not used or unsupported (Please consult the technical manual for the specific device in question).

 

Declaration:

FUNCTION gpsPPPStatus INT;

 

 

Example:

INCLUDE rtcu.inc
 
PROGRAM test;
 
BEGIN
   ...
   // Retrieve PPP status
   DebugFmt(message:="PPP status: \1", v1:= gpsPPPStatus());
   ...
END;
 
END_PROGRAM;