gpsGetSBAS (Function)

Top  Previous  Next

Architecture:

X32 / NX32 / NX32L

Firmware version:

1.21 / 1.40.00


This returns information about whether the SBAS positioning assistance is enabled or disabled.

Also see gpsSetSBAS.

 

 

Input:

None.

 

Returns: BOOL

TRUE:

SBAS assisted positioning enabled.

FALSE:

SBAS assisted positioning disabled.

 

Declaration:

FUNCTION gpsGetSBAS BOOL;

 

 

Example:

INCLUDE rtcu.inc
 
PROGRAM test;
 
BEGIN
   ...
   // Is SBAS enabled?
   IF gpsGetSBAS() THEN
      // SBAS enabled
      ...
   END_IF;
   ...
END;
 
END_PROGRAM;