navPresent (Function)

Top  Previous  Next

Architecture:

X32 / NX32 / NX32L

Firmware version:

1.40 / 1.00.00

Nav. API level:

1


This function will determine if a navigation device is present.

 

 

Input:

None.

 

 

Returns: INT

TRUE:

If navigation device is present.

FALSE:

If navigation device is not present.

 

Declaration:

FUNCTION navPresent : INT;

 

Example:

INCLUDE rtcu.inc
 
PROGRAM NavigationExample;
 
BEGIN
   // Check if navigation device is present
   IF navPresent() THEN
      DebugMsg(message := "Navigation device (" + navDeviceSerial() + ") present");
      ...
   END_IF;
   ...
END;
END_PROGRAM;