Installation manual
STAR-LINK™
70
6
PROPERTY RFMINPROTOCOLVERSION
PURPOSE
RF Version.
DESCRIPTION
This property is set from the DLL network manager and represents the minor version
of the RF protocol.
IDL
[propget, id(5), helpstring("property RFMinProtocolVersion")] HRESULT
RFMinProtocolVersion([out, retval] short *pVal);
[propput, id(5), helpstring("property RFMinProtocolVersion")] HRESULT
RFMinProtocolVersion([in] short newVal);
DATA TYPE
SHORT
POSSIBLE VALUES
Greater than 0
EXAMPLE
...
Dim SatObject as Sat
Dim strProperties as String
...
‘ Show the base station properties
Set SatObject = RFNCCTL.Satellites.Satellite(1500)
StrProperties = strProperties & “SatID = “& _
CStr(SatObject.SatID)
StrProperties = strProperties & “PID = “ & CStr(SatObject.PID)
StrProperties = strProperties & “RF Version = “ &_
CStr(SatObject.RFMaxProtocolVersion) & “.”& _
CStr(SatObject.RFMinProtocolVersion)
...