Installation manual
BASE STATION OBJECT
63
6
6 BASE STATION OBJECT
6.1 PROPERTIES
PROPERTY BAUDRATERF
PURPOSE
Indicates the radio baud rate.
DESCRIPTION
This property sets the radio baud rate value between the base station and the device.
IDL
[propget, id(7), helpstring("property BaudRateRF")] HRESULT BaudRateRF([out,
retval] long *pVal);
[propput, id(7), helpstring("property BaudRateRF")] HRESULT BaudRateRF([in] long
newVal);
DATA TYPE
LONG
POSSIBLE VALUES
9600; 19200 (for European base station models)
fixed 36800 (for USA base station models)
EXAMPLE
...
Dim SatObject as Sat
Dim strProperties as String
...
‘ Show the base station BaudRateRF property
Set SatObject = RFNCCTL.Satellites.Satellite(1500)
strProperties = "BaudRateRF = " & CStr(SatObject.BaudRateRF)
...