Data
SCPI Commands :
[SOURce<HW>]:BB:BTOoth:PCONfiguration:DATA:DSELection
[SOURce<HW>]:BB:BTOoth:PCONfiguration:DATA:VDSElection
[SOURce<HW>]:BB:BTOoth:PCONfiguration:DATA
- Commands in total: 5Subgroups: 2Direct child commands: 3
- get_dselection() str[source]
# [SOURce<HW>]:BB:BTOoth:PCONfiguration:DATA:DSELection value: str = driver.source.bb.btooth.pconfiguration.data.get_dselection()
The command selects data list file.
- Returns:
dselection: string
- get_value() DataSourceB[source]
# [SOURce<HW>]:BB:BTOoth:PCONfiguration:DATA value: enums.DataSourceB = driver.source.bb.btooth.pconfiguration.data.get_value()
Selects the data source used for the payload.
- Returns:
data: ALL0 | ALL1 | PATTern | PN09 | PN11 | PN15 | PN16 | PN20 | PN21 | PN23 | DLISt
- get_vd_selection() str[source]
# [SOURce<HW>]:BB:BTOoth:PCONfiguration:DATA:VDSElection value: str = driver.source.bb.btooth.pconfiguration.data.get_vd_selection()
Selects the data list for voice data.
- Returns:
vd_selection: string
- set_dselection(dselection: str) None[source]
# [SOURce<HW>]:BB:BTOoth:PCONfiguration:DATA:DSELection driver.source.bb.btooth.pconfiguration.data.set_dselection(dselection = 'abc')
The command selects data list file.
- Parameters:
dselection – string
- set_value(data: DataSourceB) None[source]
# [SOURce<HW>]:BB:BTOoth:PCONfiguration:DATA driver.source.bb.btooth.pconfiguration.data.set_value(data = enums.DataSourceB.ALL0)
Selects the data source used for the payload.
- Parameters:
data – ALL0 | ALL1 | PATTern | PN09 | PN11 | PN15 | PN16 | PN20 | PN21 | PN23 | DLISt
- set_vd_selection(vd_selection: str) None[source]
# [SOURce<HW>]:BB:BTOoth:PCONfiguration:DATA:VDSElection driver.source.bb.btooth.pconfiguration.data.set_vd_selection(vd_selection = 'abc')
Selects the data list for voice data.
- Parameters:
vd_selection – string
Cloning the Group
# Create a copy of the original group, that exists independently
data_copy = driver.source.bb.btooth.pconfiguration.data.clone()
Subgroups