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
Commands in total: 6
Subgroups: 1
Direct child commands: 5
get_dselection() str[source]
# [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 method RsSmw.massMemory.current_directory() . To access the files in this directory, you only have to give the file name without the path and the file extension.

Returns:

dselection: string

get_length() int[source]
# [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.

Returns:

length: integer Range: 1 to 262107

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

Queries the PPDU data rate.

Returns:

rate: float Range: 0 to LONG_MAX

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

No help available

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

Sets the data source.

Returns:

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

set_dselection(dselection: str) None[source]
# [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 method RsSmw.massMemory.current_directory() . To access the files in this directory, you only have to give the file name without the path and the file extension.

Parameters:

dselection – string

set_length(length: int) None[source]
# [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.

Parameters:

length – integer Range: 1 to 262107

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

No help available

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

Sets the data source.

Parameters:

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

Cloning the Group

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

Subgroups