Installation manual

STAR-LINK™
84
7
PROPERTY RFMAXPROTOCOLVERSION
PURPOSE
RF Version.
DESCRIPTION
This property is set from the DLL network manager and represents the major version
of the RF protocol.
IDL
[propget, id(4), helpstring("property RFMaxProtocolVersion")] HRESULT
RFMaxProtocolVersion([out, retval] short *pVal);
[propput, id(4), helpstring("property RFMaxProtocolVersion")] HRESULT
RFMaxProtocolVersion([in] short newVal);
DATA TYPE
SHORT
POSSIBLE VALUES
Greater than 1
EXAMPLE
...
Dim DevObject as Device
Dim strProperties as String
...
‘ Show the Device properties
Set DevObject = RFNCCTL.Devices.Device(1500)
StrProperties = strProperties & “DevID = “& _
CStr(DevObject.DevID)
strProperties = strProperties & “PID = “ & CStr(DevObject.PID)
strProperties = strProperties & “RF Version = “ &_
CStr(DevObject.RFMaxProtocolVersion) & “.”& _
CStr(DevObject.RFMinProtocolVersion)
...