rfbcPresent (Function)

Top  Previous  Next

Architecture:

X32 / NX32 / NX32L

Device support:

All

Firmware version:

2.60 (will report FALSE on earlier) / 1.51.00


This function will determine if the necessary functionality is present to support the RFBC protocol on the RTCU device.

If this function returns true, the rfbcOpen can be used to open the interface.

 

Input:

None.

 

Returns: BOOL

TRUE  

-

RFBC functionality is present.

FALSE

-

RFBC functionality is not present.

 

Declaration:

FUNCTION rfbcPresent : BOOL;

 

Example:

INCLUDE rtcu.inc
 
PROGRAM example;
IF rfbcPresent() THEN
  rfbcOpen();
 ...
ELSE
  DebugMsg(message := "RFBC hardware functionality is not present on this platform, or not supported by this firmware.");
END_IF;
 
BEGIN
END;
END_PROGRAM;