This function will determine if a navigation device is present.
Input:
None.
Returns: INT
TRUE:
If navigation device is present.
FALSE:
If navigation device is not present.
Declaration:
FUNCTIONnavPresent:INT;
Example:
INCLUDE rtcu.inc PROGRAM NavigationExample; BEGIN // Check if navigation device is present IFnavPresent()THEN DebugMsg(message := "Navigation device ("+navDeviceSerial()+") present"); ... END_IF; ... END; END_PROGRAM;