Installation manual

BASE STATION OBJECT
67
6
PROPERTY MAXBACKOFF
This property is reserved.
PROPERTY MINBACKOFF
This property is reserved.
PROPERTY PID
PURPOSE
Product ID
DESCRIPTION
This property is set from the DLL network manager and represents an ID of the
product. Each Datalogic RF product has a different ID.
IDL
[propget, id(3), helpstring("property PID")] HRESULT PID([out, retval] short *pVal);
[propput, id(3), helpstring("property PID")] HRESULT PID([in] short newVal);
DATA TYPE
SHORT
POSSIBLE VALUES
The STARGATE™ RF Base Station PID value is 10.
The OM-DRAGON M101 Radio Cradle PID value is 19729.
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)
...