Architecture:
NX32 / NX32L
Firmware version:
4.70 / 1.30.00
Nav. API level:
14
This function will abort the construction of a route.
Input:
None.
Returns: INT
0
- Success.
-1
- The route was not open.
Declaration:
FUNCTION navStopRouteAbort : INT;
Example:
INCLUDE rtcu.inc PROGRAM NavigationExample; BEGIN ... // Abort construction of a route. navStopRouteAbort(); ... END; END_PROGRAM;