navDeviceSerial (Function)

Top  Previous  Next

Architecture:

X32 / NX32 / NX32L

Device support:

MX2, AX9, CX1 pro/flex/warp, SX1, MX2 turbo/encore/warp, AX9 turbo, NX-200, NX-400, NX-900, LX2, LX4, LX5

Firmware version:

1.50 / 1.00.00

Nav. API level:

1


This function will return the serial number of the connected navigation device. The serial number is unique for each navigation device.

 

 

Input:

None.

 

 

Returns: STRING

The serial number of the connected navigation device.

 

 

Declaration:

FUNCTION navDeviceSerial : STRING;

 

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;