navVersion (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:

2.62 / 1.00.00

Nav. API level:

1


This function will return the version number of the software in the navigation device.

 

 

Input:

None.

 

 

Returns: INT

Version number of the firmware in the navigation device scaled by 100. Version 3.00 will be returned as 300.  

0

- Navigation device not present.

-1

- Navigation interface is not open.

 

Declaration:

FUNCTION navVersion : INT;

 

Example:

INCLUDE rtcu.inc
 
PROGRAM NavigationExample;
 
BEGIN
  ...
  // Print version
  DebugFmt(message := "Version: \1.\2" , v1:=( navVersion()/100), v2:=(navVersion() MOD 100));
  ...
END;
END_PROGRAM;