Data

SCPI Commands :

[SOURce<HW>]:BB:[LRWPan]:OQPSk:FCONfig:DATA:DSELection
[SOURce<HW>]:BB:[LRWPan]:OQPSk:FCONfig:DATA
Commands in total: 3
Subgroups: 1
Direct child commands: 2
get_dselection() str[source]
# [SOURce<HW>]:BB:[LRWPan]:OQPSk:FCONfig:DATA:DSELection
value: str = driver.source.bb.lrWpan.oqpsk.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.

Returns:

dselection: string

get_value() HrpUwbDataSource[source]
# [SOURce<HW>]:BB:[LRWPan]:OQPSk:FCONfig:DATA
value: enums.HrpUwbDataSource = driver.source.bb.lrWpan.oqpsk.fconfig.data.get_value()

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

Returns:

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. ZERO | ONE 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]
# [SOURce<HW>]:BB:[LRWPan]:OQPSk:FCONfig:DATA:DSELection
driver.source.bb.lrWpan.oqpsk.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.

Parameters:

dselection – string

set_value(data_source: HrpUwbDataSource) None[source]
# [SOURce<HW>]:BB:[LRWPan]:OQPSk:FCONfig:DATA
driver.source.bb.lrWpan.oqpsk.fconfig.data.set_value(data_source = enums.HrpUwbDataSource.DLISt)

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

Parameters:

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. ZERO | ONE 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 copy of the original group, that exists independently
data_copy = driver.source.bb.lrWpan.oqpsk.fconfig.data.clone()

Subgroups