Station

SCPI Commands :

CONFigure:WLAN:SIGNaling<instance>:CONNection:STATion:SCONnection
CONFigure:WLAN:SIGNaling<instance>:CONNection:STATion:CMODe
class StationCls[source]

Station commands group definition. 2 total commands, 0 Subgroups, 2 group commands

get_cmode() ConnectionMode[source]
# SCPI: CONFigure:WLAN:SIGNaling<instance>:CONNection:STATion:CMODe
value: enums.ConnectionMode = driver.configure.connection.station.get_cmode()

Selects the connection behavior of the simulated station (operation mode ‘Station’) .

return:

mode: ACONnect | MANual ACONnect: automatic connection MANual: manual connection via method RsCmwWlanSig.Call.Action.Station.Connect.set or method RsCmwWlanSig.Call.Action.Station.Reconnect.set

get_sconnection() ConnectionAllowed[source]
# SCPI: CONFigure:WLAN:SIGNaling<instance>:CONNection:STATion:SCONnection
value: enums.ConnectionAllowed = driver.configure.connection.station.get_sconnection()

Specifies to which access points the simulated station is allowed to connect (operation mode ‘Station’) .

return:

mode: ANY | SSID ANY: Any AP is allowed. SSID: Only a specific AP is allowed, identified by the configured SSID, see method RsCmwWlanSig.Configure.Connection.ssid.

set_cmode(mode: ConnectionMode) None[source]
# SCPI: CONFigure:WLAN:SIGNaling<instance>:CONNection:STATion:CMODe
driver.configure.connection.station.set_cmode(mode = enums.ConnectionMode.ACONnect)

Selects the connection behavior of the simulated station (operation mode ‘Station’) .

param mode:

ACONnect | MANual ACONnect: automatic connection MANual: manual connection via method RsCmwWlanSig.Call.Action.Station.Connect.set or method RsCmwWlanSig.Call.Action.Station.Reconnect.set

set_sconnection(mode: ConnectionAllowed) None[source]
# SCPI: CONFigure:WLAN:SIGNaling<instance>:CONNection:STATion:SCONnection
driver.configure.connection.station.set_sconnection(mode = enums.ConnectionAllowed.ANY)

Specifies to which access points the simulated station is allowed to connect (operation mode ‘Station’) .

param mode:

ANY | SSID ANY: Any AP is allowed. SSID: Only a specific AP is allowed, identified by the configured SSID, see method RsCmwWlanSig.Configure.Connection.ssid.