Installation manual
DEVICE OBJECT
85
7
PROPERTY RFMINPROTOCOLVERSION
PURPOSE
RF Version.
DESCRIPTION
This property is set from the DLL and represents the minor 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)
...