nmpPresent (Function)

Top  Previous  Next

Architecture:

X32 / NX32 / NX32L

Device support:

MX2i pro, CX1 pro/flex/warp, SX1, MX2 turbo, NX-200, NX-400, NX-900, LX2

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;