navRemoteReboot (Function)

Top  Previous  Next

Architecture:

NX32 / NX32L

Device support:

MX2 turbo/encore/warp, AX9 turbo, NX-200, NX-400, NX-900, LX2, LX4, LX5

Firmware version:

4.70 / 1.30.00

Nav. API level:

9


This function will make the navigation unit reboot.

This should only be performed if it no longer responds to the user, as some user data on the navigation device could potentially be lost.

 

 

Input:

None.

 

 

Returns: INT

0

- Success.

-1

- Navigation interface is not opened.

-2

- Error communicating with navigation device.

-11

- Remote reboot is not supported.

 

Declaration:

FUNCTION navRemoteReboot : INT;

 

Example:

INCLUDE rtcu.inc
 
PROGRAM NavigationExample;
 
BEGIN
  ...
  // Reboot the navigation unit
  navRemoteReboot();
  ...
END;
END_PROGRAM;