Data

SCPI Commands :

[SOURce<HW>]:BB:BTOoth:ECONfiguration:PCONfiguration:DATA:DSELection
[SOURce<HW>]:BB:BTOoth:ECONfiguration:PCONfiguration:DATA
class DataCls[source]

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

get_dselection() str[source]
# SCPI: [SOURce<HW>]:BB:BTOoth:ECONfiguration:PCONfiguration:DATA:DSELection
value: str = driver.source.bb.btooth.econfiguration.pconfiguration.data.get_dselection()
Selects a data list file from the default directory or from the specific directory.

INTRO_CMD_HELP: Using data list (DLISt) data requires one of the following commands:

  • BB:BTO:ECON:PCON:DATA DLISt See [:SOURce<hw>]:BB:BTOoth:ECONfiguration:PCONfiguration:DATA.

  • BB:BTO:DTT:TPC:UPS DLISt See [:SOURce<hw>]:BB:BTOoth:DTTest:TPConfiguration:UPSource.

Refer to ‘Accessing Files in the Default or Specified Directory’ for general information on file handling in the default and in a specific directory.

return:

dselection: string

get_value() DataSourceB[source]
# SCPI: [SOURce<HW>]:BB:BTOoth:ECONfiguration:PCONfiguration:DATA
value: enums.DataSourceB = driver.source.bb.btooth.econfiguration.pconfiguration.data.get_value()

Selects the pattern source used for the payload.

return:

data: ALL0| ALL1| PATTern| PN09| PN11| PN15| PN16| PN20| PN21| PN23| DLISt ALL0 / ALL1 All 0 or all 1 pattern PATTern User-defined pattern. The pattern can be specified via: [:SOURcehw]:BB:BTOoth:ECONfiguration:PCONfiguration:DATA:DPATtern PNxx Pseudo-random bit sequences (PRBS) of a length of xx bits. The length in bit can be 9, 11, 15, 16, 20, 21, or 23. DLISt Internal data list is used. The data list can be specified via: [:SOURcehw]:BB:BTOoth:ECONfiguration:PCONfiguration:DATA:DSELection

set_dselection(dselection: str) None[source]
# SCPI: [SOURce<HW>]:BB:BTOoth:ECONfiguration:PCONfiguration:DATA:DSELection
driver.source.bb.btooth.econfiguration.pconfiguration.data.set_dselection(dselection = 'abc')
Selects a data list file from the default directory or from the specific directory.

INTRO_CMD_HELP: Using data list (DLISt) data requires one of the following commands:

  • BB:BTO:ECON:PCON:DATA DLISt See [:SOURce<hw>]:BB:BTOoth:ECONfiguration:PCONfiguration:DATA.

  • BB:BTO:DTT:TPC:UPS DLISt See [:SOURce<hw>]:BB:BTOoth:DTTest:TPConfiguration:UPSource.

Refer to ‘Accessing Files in the Default or Specified Directory’ for general information on file handling in the default and in a specific directory.

param dselection:

string

set_value(data: DataSourceB) None[source]
# SCPI: [SOURce<HW>]:BB:BTOoth:ECONfiguration:PCONfiguration:DATA
driver.source.bb.btooth.econfiguration.pconfiguration.data.set_value(data = enums.DataSourceB.ALL0)

Selects the pattern source used for the payload.

param data:

ALL0| ALL1| PATTern| PN09| PN11| PN15| PN16| PN20| PN21| PN23| DLISt ALL0 / ALL1 All 0 or all 1 pattern PATTern User-defined pattern. The pattern can be specified via: [:SOURcehw]:BB:BTOoth:ECONfiguration:PCONfiguration:DATA:DPATtern PNxx Pseudo-random bit sequences (PRBS) of a length of xx bits. The length in bit can be 9, 11, 15, 16, 20, 21, or 23. DLISt Internal data list is used. The data list can be specified via: [:SOURcehw]:BB:BTOoth:ECONfiguration:PCONfiguration:DATA:DSELection

Cloning the Group

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

Subgroups