nmpPresent (Function)

Top  Previous  Next

Architecture:

X32 / NX32 / NX32L

Firmware version:

2.62 / 1.00.00

Nav. API level:

2


This function will determine if an NMP device is present.

 

 

Input:

None.

 

 

Returns: BOOL

TRUE:

If an NMP device is present.

FALSE:

If an NMP device is not present.

 

Declaration:

FUNCTION nmpPresent : BOOL;

 

Example:

INCLUDE rtcu.inc
 
PROGRAM NMPExample;
 
BEGIN
   // Check if navigation device is present
   IF nmpPresent() THEN
      DebugMsg(message := "NMP device present");
      ...
   END_IF;
   ...
END;
END_PROGRAM;