Installation manual
STAR-LINK™
66
6
PROPERTY FRAMELIFE
This property is reserved.
PROPERTY INTERFACE
PURPOSE
Indicates the base station function mode.
DESCRIPTION
This property sets the RS232 or RS485 interface. If it is set to 0 the RS485 interface
is selected; while the 1 value selects the RS232 one.
IDL
[propget, id(12), helpstring("property Interface")] HRESULT Interface([out, retval];
short *pVal);
[propput, id(12), helpstring("property Interface")] HRESULT Interface([in] short newVal);
DATA TYPE
SHORT
POSSIBLE VALUES
0; 1
EXAMPLE
...
Dim SatObject as Sat
Dim strProperties as String
...
‘Show the base station interface propert
Set SatObject = RFNCCTL.Satellites.Satellite(1500)
strProperties = "Interface = " & CStr (SatObject.Interface)
...