MacReserve

SCPI Command :

CONFigure:WLAN:SIGNaling<instance>:CONNection:ASSociation:STA<s>:MACReserve
class MacReserveCls[source]

MacReserve commands group definition. 1 total commands, 0 Subgroups, 1 group commands

class MacReserveStruct[source]

Response structure. Fields:

  • Reservation: enums.Reservation: ANY | SET | OFF ANY - the slot is available to a STA of any MAC address SET - reserves the slot for a particular MAC address OFF - the slot is disabled

  • Address: str: string MAC address of the DUT for Reservation = SET

get(station=Station.Default) MacReserveStruct[source]
# SCPI: CONFigure:WLAN:SIGNaling<instance>:CONNection:ASSociation:STA<s>:MACReserve
value: MacReserveStruct = driver.configure.connection.association.sta.macReserve.get(station = repcap.Station.Default)

Configures three slots available for STAs, if method RsCmwWlanSig.Configure.Connection.mstation is set to ON

param station:

optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Sta’)

return:

structure: for return value, see the help for MacReserveStruct structure arguments.

set(reservation: Reservation, address: str = None, station=Station.Default) None[source]
# SCPI: CONFigure:WLAN:SIGNaling<instance>:CONNection:ASSociation:STA<s>:MACReserve
driver.configure.connection.association.sta.macReserve.set(reservation = enums.Reservation.ANY, address = 'abc', station = repcap.Station.Default)

Configures three slots available for STAs, if method RsCmwWlanSig.Configure.Connection.mstation is set to ON

param reservation:

ANY | SET | OFF ANY - the slot is available to a STA of any MAC address SET - reserves the slot for a particular MAC address OFF - the slot is disabled

param address:

string MAC address of the DUT for Reservation = SET

param station:

optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Sta’)