Data

SCPI Commands :

[SOURce<HW>]:BB:HUWB:FCONfig:DATA:DSELection
[SOURce<HW>]:BB:HUWB:FCONfig:DATA
class DataCls[source]

Data commands group definition. 3 total commands, 1 Subgroups, 2 group commands

get_dselection() str[source]
# SCPI: [SOURce<HW>]:BB:HUWB:FCONfig:DATA:DSELection
value: str = driver.source.bb.huwb.fconfig.data.get_dselection()

Selects an existing data list file from the default directory or from the specific directory. The data list is only used, if the DLIS is selected.

return

dselection: string

get_value() RsSmbv.enums.HrpUwbDataSource[source]
# SCPI: [SOURce<HW>]:BB:HUWB:FCONfig:DATA
value: enums.HrpUwbDataSource = driver.source.bb.huwb.fconfig.data.get_value()

Sets the data source for the payload data in a frame.

return

data_source: PN9| PN11| PN15| PN20| PN16| PN21| PN23| ONE| ZERO| DLISt| PATT PNxx The pseudo-random sequence generator is used as the data source. There is a choice of different lengths of random sequence. DLISt A data list is used. The data list is selected with the aid of command SOURce1:BB:HUWB:DATA DLISt. ALL0 | ALL1 Internal 0 or 1 data is used. PATT Internal data is used. The bit pattern for the data is defined with the aid of command SOURce1:BB:HUWB:DATA:PATTern.

set_dselection(dselection: str) None[source]
# SCPI: [SOURce<HW>]:BB:HUWB:FCONfig:DATA:DSELection
driver.source.bb.huwb.fconfig.data.set_dselection(dselection = 'abc')

Selects an existing data list file from the default directory or from the specific directory. The data list is only used, if the DLIS is selected.

param dselection

string

set_value(data_source: RsSmbv.enums.HrpUwbDataSource) None[source]
# SCPI: [SOURce<HW>]:BB:HUWB:FCONfig:DATA
driver.source.bb.huwb.fconfig.data.set_value(data_source = enums.HrpUwbDataSource.DLISt)

Sets the data source for the payload data in a frame.

param data_source

PN9| PN11| PN15| PN20| PN16| PN21| PN23| ONE| ZERO| DLISt| PATT PNxx The pseudo-random sequence generator is used as the data source. There is a choice of different lengths of random sequence. DLISt A data list is used. The data list is selected with the aid of command SOURce1:BB:HUWB:DATA DLISt. ALL0 | ALL1 Internal 0 or 1 data is used. PATT Internal data is used. The bit pattern for the data is defined with the aid of command SOURce1:BB:HUWB:DATA:PATTern.

Cloning the Group

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

Subgroups