Architecture:
NX32, NX32L
Device support:
MX2 turbo/encore/warp, NX-200 with PPP support
Firmware version:
4.10
Returns the number of satellites using Precise Point Positioning (PPP) for increased accuracy.
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;