navDeviceSerial (Function)

Top  Previous  Next

Architecture:

X32 / NX32 / NX32L

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;