Ampdu

SCPI Command :

CONFigure:WLAN:SIGNaling<instance>:STA<s>:CONNection:AMPDu
class AmpduCls[source]

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

class AmpduStruct[source]

Response structure. Fields:

  • Enable: enums.EnableState: DISable | ENABle Enables/ disables the A-MPDUs

  • Multi_Tid: enums.EnableState: DISable | ENABle Enables/ disables multi-TID A-MPDU

  • Max_Length: int: integer The maximal length of entire A-MPDU Range: 50 to 131.071E+3, Unit: byte

get(station=Station.Default) AmpduStruct[source]
# SCPI: CONFigure:WLAN:SIGNaling<instance>:STA<s>:CONNection:AMPDu
value: AmpduStruct = driver.configure.sta.connection.ampdu.get(station = repcap.Station.Default)

Configures aggregate MPDUs (A-MPDU) .

param station:

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

return:

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

set(enable: EnableState, multi_tid: EnableState, max_length: int, station=Station.Default) None[source]
# SCPI: CONFigure:WLAN:SIGNaling<instance>:STA<s>:CONNection:AMPDu
driver.configure.sta.connection.ampdu.set(enable = enums.EnableState.DISable, multi_tid = enums.EnableState.DISable, max_length = 1, station = repcap.Station.Default)

Configures aggregate MPDUs (A-MPDU) .

param enable:

DISable | ENABle Enables/ disables the A-MPDUs

param multi_tid:

DISable | ENABle Enables/ disables multi-TID A-MPDU

param max_length:

integer The maximal length of entire A-MPDU Range: 50 to 131.071E+3, Unit: byte

param station:

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