Data

SCPI Commands :

[SOURce<HW>]:BB:DVB:DVBH:[LP]:DATA:DSELection
[SOURce<HW>]:BB:DVB:DVBH:[LP]:DATA
class DataCls[source]

Data commands group definition. 2 total commands, 0 Subgroups, 2 group commands

get_dselection() str[source]
# SCPI: [SOURce<HW>]:BB:DVB:DVBH:[LP]:DATA:DSELection
value: str = driver.source.bb.dvb.dvbh.lp.data.get_dselection()

Selects an existing TS file from the default directory or from the specific directory. TS files are files with extension *.gts, *.ts, or *.trp. 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 Filename incl. file extension or complete file path

get_value() RsSmw.enums.DvbDataSour[source]
# SCPI: [SOURce<HW>]:BB:DVB:DVBH:[LP]:DATA
value: enums.DvbDataSour = driver.source.bb.dvb.dvbh.lp.data.get_value()

Selects the data source to be used.

return

data: PAC0| PAC1| PN15| PN23| DLISt ZERO Internal 0 is used. ONE Internal 1 is used. PN15/23 Internally generated PRBS data as per CCITT with period lengths between (29-1 and 223-1) . DLISt Internal data from a TS file is used.

set_dselection(dselection: str) None[source]
# SCPI: [SOURce<HW>]:BB:DVB:DVBH:[LP]:DATA:DSELection
driver.source.bb.dvb.dvbh.lp.data.set_dselection(dselection = 'abc')

Selects an existing TS file from the default directory or from the specific directory. TS files are files with extension *.gts, *.ts, or *.trp. 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 Filename incl. file extension or complete file path

set_value(data: RsSmw.enums.DvbDataSour) None[source]
# SCPI: [SOURce<HW>]:BB:DVB:DVBH:[LP]:DATA
driver.source.bb.dvb.dvbh.lp.data.set_value(data = enums.DvbDataSour.DLISt)

Selects the data source to be used.

param data

PAC0| PAC1| PN15| PN23| DLISt ZERO Internal 0 is used. ONE Internal 1 is used. PN15/23 Internally generated PRBS data as per CCITT with period lengths between (29-1 and 223-1) . DLISt Internal data from a TS file is used.