Data
SCPI Commands :
[SOURce<HW>]:BB:DVB:DVBS:DATA:DSELection
[SOURce<HW>]:BB:DVB:DVBS:DATA:GSELection
[SOURce<HW>]:BB:DVB:DVBS:DATA:LENGth
[SOURce<HW>]:BB:DVB:DVBS:DATA:TSELection
[SOURce<HW>]:BB:DVB:DVBS:DATA
- class DataCls[source]
Data commands group definition. 6 total commands, 1 Subgroups, 5 group commands
- get_dselection() str [source]
# SCPI: [SOURce<HW>]:BB:DVB:DVBS:DATA:DSELection value: str = driver.source.bb.dvb.dvbs.data.get_dselection()
- Selects an existing data list, transport file (TS) or GSE file from the default or from the specific directory.
INTRO_CMD_HELP: Selects the clock source:
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:
fselection: string Filename incl. file extension or complete file path
- get_gselection() str [source]
# SCPI: [SOURce<HW>]:BB:DVB:DVBS:DATA:GSELection value: str = driver.source.bb.dvb.dvbs.data.get_gselection()
- Selects an existing data list, transport file (TS) or GSE file from the default or from the specific directory.
INTRO_CMD_HELP: Selects the clock source:
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:
fselection: string Filename incl. file extension or complete file path
- get_length() int [source]
# SCPI: [SOURce<HW>]:BB:DVB:DVBS:DATA:LENGth value: int = driver.source.bb.dvb.dvbs.data.get_length()
Sets the data length.
- return:
dlength: integer Range: 1 to 65536, Unit: Bytes
- get_tselection() str [source]
# SCPI: [SOURce<HW>]:BB:DVB:DVBS:DATA:TSELection value: str = driver.source.bb.dvb.dvbs.data.get_tselection()
- Selects an existing data list, transport file (TS) or GSE file from the default or from the specific directory.
INTRO_CMD_HELP: Selects the clock source:
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:
fselection: string Filename incl. file extension or complete file path
- get_value() DvbDataSource [source]
# SCPI: [SOURce<HW>]:BB:DVB:DVBS:DATA value: enums.DvbDataSource = driver.source.bb.dvb.dvbs.data.get_value()
Selects the data source.
- return:
data: ZERO| ONE| PATTern| PN9| PN11| PN15| PN16| PN20| PN21| PN23| DLISt| TFILe| GFILe PATTern To set the bit pattern, use the command [:SOURcehw]:BB:DVB:DVBS|DVBX:DATA:PATTern. DLISt|TFILe|GFILe To select the data list, TS file or the GSE file, use the command [:SOURcehw]:BB:DVB:DVBS|DVBX:DATA:DSELection|TSELection|GSELection.
- set_dselection(fselection: str) None [source]
# SCPI: [SOURce<HW>]:BB:DVB:DVBS:DATA:DSELection driver.source.bb.dvb.dvbs.data.set_dselection(fselection = 'abc')
- Selects an existing data list, transport file (TS) or GSE file from the default or from the specific directory.
INTRO_CMD_HELP: Selects the clock source:
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 fselection:
string Filename incl. file extension or complete file path
- set_gselection(fselection: str) None [source]
# SCPI: [SOURce<HW>]:BB:DVB:DVBS:DATA:GSELection driver.source.bb.dvb.dvbs.data.set_gselection(fselection = 'abc')
- Selects an existing data list, transport file (TS) or GSE file from the default or from the specific directory.
INTRO_CMD_HELP: Selects the clock source:
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 fselection:
string Filename incl. file extension or complete file path
- set_length(dlength: int) None [source]
# SCPI: [SOURce<HW>]:BB:DVB:DVBS:DATA:LENGth driver.source.bb.dvb.dvbs.data.set_length(dlength = 1)
Sets the data length.
- param dlength:
integer Range: 1 to 65536, Unit: Bytes
- set_tselection(fselection: str) None [source]
# SCPI: [SOURce<HW>]:BB:DVB:DVBS:DATA:TSELection driver.source.bb.dvb.dvbs.data.set_tselection(fselection = 'abc')
- Selects an existing data list, transport file (TS) or GSE file from the default or from the specific directory.
INTRO_CMD_HELP: Selects the clock source:
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 fselection:
string Filename incl. file extension or complete file path
- set_value(data: DvbDataSource) None [source]
# SCPI: [SOURce<HW>]:BB:DVB:DVBS:DATA driver.source.bb.dvb.dvbs.data.set_value(data = enums.DvbDataSource.DLISt)
Selects the data source.
- param data:
ZERO| ONE| PATTern| PN9| PN11| PN15| PN16| PN20| PN21| PN23| DLISt| TFILe| GFILe PATTern To set the bit pattern, use the command [:SOURcehw]:BB:DVB:DVBS|DVBX:DATA:PATTern. DLISt|TFILe|GFILe To select the data list, TS file or the GSE file, use the command [:SOURcehw]:BB:DVB:DVBS|DVBX:DATA:DSELection|TSELection|GSELection.
Cloning the Group
# Create a clone of the original group, that exists independently
group2 = driver.source.bb.dvb.dvbs.data.clone()
Subgroups