Data

SCPI Commands :

[SOURce<HW>]:BB:WLAD:PCONfig:DATA:DSELection
[SOURce<HW>]:BB:WLAD:PCONfig:DATA:LENGth
[SOURce<HW>]:BB:WLAD:PCONfig:DATA:RATE
[SOURce<HW>]:BB:WLAD:PCONfig:DATA:SYMBols
[SOURce<HW>]:BB:WLAD:PCONfig:DATA
class DataCls[source]

Data commands group definition. 6 total commands, 1 Subgroups, 5 group commands

get_dselection() str[source]
# SCPI: [SOURce<HW>]:BB:WLAD:PCONfig:DATA:DSELection
value: str = driver.source.bb.wlad.pconfig.data.get_dselection()

Selects a data list, for the DLIST data source selection. The lists are stored as files with the fixed file extensions *. dm_iqd in a directory of the user’s choice. The directory applicable to the following commands is defined with the command method RsSmw.MassMemory.currentDirectory. To access the files in this directory, you only have to give the file name without the path and the file extension.

return:

dselection: string

get_length() int[source]
# SCPI: [SOURce<HW>]:BB:WLAD:PCONfig:DATA:LENGth
value: int = driver.source.bb.wlad.pconfig.data.get_length()

Sets the size of the data field in bytes. The data length is related to the number of data symbols that is set with BB:WLAD:PCON:DATA:SYMB. Whenever the data length changes, the number of data symbols is updated and vice versa.

return:

length: integer Range: 1 to 262107

get_rate() float[source]
# SCPI: [SOURce<HW>]:BB:WLAD:PCONfig:DATA:RATE
value: float = driver.source.bb.wlad.pconfig.data.get_rate()

Queries the PPDU data rate.

return:

rate: float Range: 0 to LONG_MAX

get_symbols() int[source]
# SCPI: [SOURce<HW>]:BB:WLAD:PCONfig:DATA:SYMBols
value: int = driver.source.bb.wlad.pconfig.data.get_symbols()

No command help available

return:

symbols: No help available

get_value() WlannDataSource[source]
# SCPI: [SOURce<HW>]:BB:WLAD:PCONfig:DATA
value: enums.WlannDataSource = driver.source.bb.wlad.pconfig.data.get_value()

Sets the data source.

return:

data: ZERO| ONE| PATTern| PN9| PN11| PN15| PN16| PN20| PN21| PN23| DLISt| AMPDU

set_dselection(dselection: str) None[source]
# SCPI: [SOURce<HW>]:BB:WLAD:PCONfig:DATA:DSELection
driver.source.bb.wlad.pconfig.data.set_dselection(dselection = 'abc')

Selects a data list, for the DLIST data source selection. The lists are stored as files with the fixed file extensions *. dm_iqd in a directory of the user’s choice. The directory applicable to the following commands is defined with the command method RsSmw.MassMemory.currentDirectory. To access the files in this directory, you only have to give the file name without the path and the file extension.

param dselection:

string

set_length(length: int) None[source]
# SCPI: [SOURce<HW>]:BB:WLAD:PCONfig:DATA:LENGth
driver.source.bb.wlad.pconfig.data.set_length(length = 1)

Sets the size of the data field in bytes. The data length is related to the number of data symbols that is set with BB:WLAD:PCON:DATA:SYMB. Whenever the data length changes, the number of data symbols is updated and vice versa.

param length:

integer Range: 1 to 262107

set_symbols(symbols: int) None[source]
# SCPI: [SOURce<HW>]:BB:WLAD:PCONfig:DATA:SYMBols
driver.source.bb.wlad.pconfig.data.set_symbols(symbols = 1)

No command help available

param symbols:

No help available

set_value(data: WlannDataSource) None[source]
# SCPI: [SOURce<HW>]:BB:WLAD:PCONfig:DATA
driver.source.bb.wlad.pconfig.data.set_value(data = enums.WlannDataSource.AMPDU)

Sets the data source.

param data:

ZERO| ONE| PATTern| PN9| PN11| PN15| PN16| PN20| PN21| PN23| DLISt| AMPDU

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.source.bb.wlad.pconfig.data.clone()

Subgroups