Installation manual
STAR-LINK™
32
3
METHOD OPENLINE
PURPOSE
Opens the serial line.
DESCRIPTION
Opens the serial line. This is the first operation the developer must do.
You can send all the base station commands, like Alive, GetStatus ecc. after
opening the serial line. It is not necessary the network data collection is started.
IDL
[id(8), helpstring("method OpenLine")] HRESULT OpenLine();
INPUT PARAMETERS
None
OUTPUT VALUE
None
EXAMPLE
...
‘ Set the serial line and open it
RFNCCTL.CommPort = “COM2”
RFNCCTL.BaudRate = “38400”
RFNCCTL.Timeout = 100
RFNCCTL.OpenLine
...